-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
---------------------- set version to 0.9.2 Updating screenshots removed unused css file (van11y accessible modal) removed unused js file (van11y accessible modal) fixed some Codacy issues (js, java) typo fixed #178 / fixed #179 transform debian package documentation into markdown file typo fixed #172 #172 - All maven plugins have their version specified (except maven-assembly-plugin) Revert "fixed #172 - All maven plugins have their version specified (except maven-assembly-plugin)" Upgraded dependencies fixed #172 - All maven plugins have their version specified (except maven-assembly-plugin) Doc > Contributor > QA tools - Added "Image Analysis Tool" Upgraded dependencies - Fixed #167 / Fixed #168 / Fixe d #169 / Fixed #170 #166 - Disabled maven-site-plugin for debian_package clean #166 Fixed #166 - Use an independent subproject for jdeb (debian packages creation) Webapp - Added humans.txt file Fixed #165 - Added some information to the MANIFEST.MF files : commit, buid timestamp Fixed #162 / Fixed #163 / Fixed #164 set version to 0.9.2-SNAPSHOT
- Loading branch information
Showing
76 changed files
with
940 additions
and
961 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.asqatasun</groupId> | ||
<artifactId>dist</artifactId> | ||
<version>0.9.2</version> | ||
</parent> | ||
<artifactId>contrast-finder-dist_debian-packages</artifactId> | ||
<version>0.9.2</version> | ||
<packaging>jar</packaging> | ||
<name>contrast-finder-dist_debian-packages</name> | ||
<licenses> | ||
<license> | ||
<name>GNU Affero General Public License v3.0</name> | ||
<url>https://www.gnu.org/licenses/agpl-3.0.txt</url> | ||
<distribution>manual</distribution> | ||
</license> | ||
</licenses> | ||
<url>https://contrast-finder.org</url> | ||
<organization> | ||
<name>Asqatasun.org</name> | ||
<url>https://asqatasun.org</url> | ||
</organization> | ||
|
||
<properties> | ||
<endorsed.dir>${project.build.directory}/endorsed</endorsed.dir> | ||
|
||
<!-- Plugin Versions --> | ||
<jdeb.version>1.6</jdeb.version> <!-- need Maven with Jdk-8 --> | ||
</properties> | ||
|
||
|
||
|
||
<build> | ||
<finalName>contrast-finder-webapp_${project.version}</finalName> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-site-plugin</artifactId> | ||
<version>${maven-site-plugin.version}</version> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
|
||
<!-- jdeb: maven plugin to create Debian packages from Java build | ||
https://github.com/tcurdt/jdeb --> | ||
<plugin> | ||
<groupId>org.vafer</groupId> | ||
<artifactId>jdeb</artifactId> | ||
<version>${jdeb.version}</version> | ||
<executions> | ||
<execution> | ||
<id>jdeb_tomcat7</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>jdeb</goal> | ||
</goals> | ||
<configuration> | ||
<deb>${project.build.directory}/contrast-finder-webapp_${project.version}_tomcat7.deb</deb> | ||
<verbose>true</verbose> | ||
<controlDir>${project.basedir}/src/deb/tomcat7/control</controlDir> | ||
<dataSet> | ||
<data> | ||
<type>template</type> | ||
<paths> | ||
<path>/etc/contrast-finder</path> | ||
<path>/var/log/contrast-finder</path> | ||
</paths> | ||
</data> | ||
<data> | ||
<conffile>true</conffile> | ||
<type>file</type> | ||
<src>../../webapp/src/main/resources/conf/contrast-finder.conf.dist</src> | ||
<dst>/etc/contrast-finder/contrast-finder.conf.dist</dst> | ||
<mapper> | ||
<type>perm</type> | ||
<user>tomcat7</user> | ||
</mapper> | ||
</data> | ||
<data> | ||
<type>file</type> | ||
<src>../../webapp/src/main/resources/conf/contrast-finder.log</src> | ||
<mapper> | ||
<type>perm</type> | ||
<prefix>/var/log/contrast-finder</prefix> | ||
<user>tomcat7</user> | ||
</mapper> | ||
</data> | ||
<data> | ||
<type>file</type> | ||
<src>../../webapp/target/contrast-finder-webapp_${project.version}.war</src> | ||
<dst>contrast-finder.war</dst> | ||
<mapper> | ||
<type>perm</type> | ||
<prefix>/var/lib/tomcat7/webapps</prefix> | ||
<user>tomcat7</user> | ||
</mapper> | ||
</data> | ||
<data> | ||
<type>file</type> | ||
<src>${project.basedir}/src/deb/tomcat7/copyright</src> | ||
<dst>/usr/share/doc/contrast-finder-webapp/copyright</dst> | ||
</data> | ||
</dataSet> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<id>jdeb_tomcat8</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>jdeb</goal> | ||
</goals> | ||
<configuration> | ||
<deb>${project.build.directory}/contrast-finder-webapp_${project.version}_tomcat8.deb</deb> | ||
<verbose>true</verbose> | ||
<controlDir>${project.basedir}/src/deb/tomcat8/control</controlDir> | ||
<dataSet> | ||
<data> | ||
<type>template</type> | ||
<paths> | ||
<path>/etc/contrast-finder</path> | ||
<path>/var/log/contrast-finder</path> | ||
</paths> | ||
</data> | ||
<data> | ||
<conffile>true</conffile> | ||
<type>file</type> | ||
<src>../../webapp/src/main/resources/conf/contrast-finder.conf.dist</src> | ||
<mapper> | ||
<type>perm</type> | ||
<prefix>/etc/contrast-finder</prefix> | ||
<user>tomcat8</user> | ||
</mapper> | ||
</data> | ||
<data> | ||
<type>file</type> | ||
<src>../../webapp/src/main/resources/conf/contrast-finder.log</src> | ||
<mapper> | ||
<type>perm</type> | ||
<prefix>/var/log/contrast-finder</prefix> | ||
<user>tomcat8</user> | ||
</mapper> | ||
</data> | ||
<data> | ||
<type>file</type> | ||
<src>../../webapp/target/contrast-finder-webapp_${project.version}.war</src> | ||
<dst>contrast-finder.war</dst> | ||
<mapper> | ||
<type>perm</type> | ||
<prefix>/var/lib/tomcat8/webapps</prefix> | ||
<user>tomcat8</user> | ||
</mapper> | ||
</data> | ||
<data> | ||
<type>file</type> | ||
<src>${project.basedir}/src/deb/tomcat8/copyright</src> | ||
<dst>/usr/share/doc/contrast-finder-webapp/copyright</dst> | ||
</data> | ||
</dataSet> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
2 changes: 1 addition & 1 deletion
2
webapp/src/deb/tomcat7/control/control → ...n_package/src/deb/tomcat7/control/control
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
webapp/src/deb/tomcat8/control/control → ...n_package/src/deb/tomcat8/control/control
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.asqatasun</groupId> | ||
<artifactId>contrast-finder</artifactId> | ||
<version>0.9.2</version> | ||
</parent> | ||
<artifactId>dist</artifactId> | ||
<version>0.9.2</version> | ||
<packaging>pom</packaging> | ||
<name>contrast-finder-dist</name> | ||
<licenses> | ||
<license> | ||
<name>GNU Affero General Public License v3.0</name> | ||
<url>https://www.gnu.org/licenses/agpl-3.0.txt</url> | ||
<distribution>manual</distribution> | ||
</license> | ||
</licenses> | ||
<url>https://contrast-finder.org</url> | ||
<organization> | ||
<name>Asqatasun.org</name> | ||
<url>https://asqatasun.org</url> | ||
</organization> | ||
|
||
<modules> | ||
<module>debian_package</module> | ||
</modules> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.