Author: tchemit Date: 2008-07-23 15:33:57 +0000 (Wed, 23 Jul 2008) New Revision: 890 Modified: trunk/commandline/pom.xml Log: define for a plugin his dependencies here, not in each module, since maven seems to not handle this very well... Modified: trunk/commandline/pom.xml =================================================================== --- trunk/commandline/pom.xml 2008-07-23 15:32:48 UTC (rev 889) +++ trunk/commandline/pom.xml 2008-07-23 15:33:57 UTC (rev 890) @@ -95,7 +95,7 @@ <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> - <phase>verify</phase> + <phase>deploy</phase> <goals> <goal>jar</goal> </goals> @@ -133,6 +133,23 @@ <xdocDirectory>${basedir}/target/generated-site/xdoc/fr/rst</xdocDirectory> </configuration> </plugin> + + <plugin> + <groupId>org.codelutin.jaxx</groupId> + <artifactId>maven-jaxx-plugin</artifactId> + <dependencies> + <dependency> + <groupId>org.codelutin.jaxx</groupId> + <artifactId>swing-jaxx</artifactId> + <version>${jaxx.version}</version> + </dependency> + <dependency> + <groupId>lutinlib</groupId> + <artifactId>lutinwidget</artifactId> + <version>0.10-SNAPSHOT</version> + </dependency> + </dependencies> + </plugin> </plugins> </build> @@ -141,7 +158,7 @@ <!-- current version --> <current.version>0.7-SNAPSHOT</current.version> - + <!-- jaxx version --> <jaxx.version>0.2-SNAPSHOT</jaxx.version> @@ -159,7 +176,7 @@ <!--le repertoire de generation --> <maven.gen.dir>${basedir}/target/generated-sources</maven.gen.dir> - + <!-- Lists URL --> <labs.lists> http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinutil @@ -228,12 +245,25 @@ </dependency> <dependency> + <groupId>lutinlib</groupId> + <artifactId>lutinwidget</artifactId> + <version>0.10-SNAPSHOT</version> + </dependency> + + <!-- jaxx library --> + <dependency> <groupId>org.codelutin.jaxx</groupId> <artifactId>jaxx-swing</artifactId> <version>${jaxx.version}</version> </dependency> <dependency> + <groupId>org.codelutin.jaxx</groupId> + <artifactId>jaxx-swing-action</artifactId> + <version>${jaxx.version}</version> + </dependency> + + <dependency> <groupId>org.codelutin.commandline</groupId> <artifactId>commandline-core</artifactId> <version>${current.version}</version>