Author: tchemit Date: 2010-01-18 18:27:09 +0000 (Mon, 18 Jan 2010) New Revision: 1586 Modified: trunk/simexplorer-is/simexplorer-is-swing/pom.xml Log: improve debian pkg configuration + add ubuntu_jaunty distro Modified: trunk/simexplorer-is/simexplorer-is-swing/pom.xml =================================================================== --- trunk/simexplorer-is/simexplorer-is-swing/pom.xml 2010-01-18 17:20:02 UTC (rev 1585) +++ trunk/simexplorer-is/simexplorer-is-swing/pom.xml 2010-01-18 18:27:09 UTC (rev 1586) @@ -341,17 +341,6 @@ <!-- *** Build Environment ************************************** --> <!-- ************************************************************* --> - <pluginRepositories> - <pluginRepository> - <id>evolvis-release-repository</id> - <name>evolvis.org release repository</name> - <url>http://maven-repo.evolvis.org/releases</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - </pluginRepository> - </pluginRepositories> - <profiles> <profile> <id>deb-profile</id> @@ -364,15 +353,30 @@ <properties> <maven.skip.test>true</maven.skip.test> </properties> + + <pluginRepositories> + <pluginRepository> + <id>evolvis-release-repository</id> + <name>evolvis.org release repository</name> + <url>http://maven-repo.evolvis.org/releases</url> + <snapshots> + <enabled>false</enabled> + </snapshots> + </pluginRepository> + </pluginRepositories> + <build> + + <defaultGoal>package</defaultGoal> + <pluginManagement> <plugins> <plugin> <groupId>de.tarent.maven.plugins</groupId> <artifactId>maven-pkg-plugin</artifactId> - <version>2.0.0</version> + <version>2.1.1</version> <configuration> - <defaultDistro>ubuntu_hardy</defaultDistro> + <defaultDistro>ubuntu_jaunty</defaultDistro> <shortDescription>Java Swing UI SimExplorer-is application</shortDescription> <defaults> <srcAuxFilesDir>${maven.src.dir}/main/pkg</srcAuxFilesDir> @@ -390,7 +394,6 @@ <plugin> <groupId>de.tarent.maven.plugins</groupId> <artifactId>maven-pkg-plugin</artifactId> - <version>2.0.0</version> <executions> <execution> <id>debian_etch</id> @@ -433,16 +436,25 @@ </configuration> </execution> <execution> - <id>ubuntu_jaunty_all</id> + <id>ubuntu_jaunty</id> <phase>package</phase> <goals> <goal>pkg</goal> </goals> <configuration> - <distro>ubuntu_jaunty_all</distro> + <distro>ubuntu_jaunty</distro> </configuration> </execution> - <!-- TODO Add for last ubuntu distor --> + <!--execution> + <id>ubuntu_karmic</id> + <phase>package</phase> + <goals> + <goal>pkg</goal> + </goals> + <configuration> + <distro>ubuntu_karmic</distro> + </configuration> + </execution--> </executions> </plugin> </plugins>