Author: tchemit Date: 2009-09-27 21:15:24 +0200 (Sun, 27 Sep 2009) New Revision: 596 Modified: trunk/pom.xml Log: - add javadoc for test (use javadoc plugin v 2.6) - improve test dependencies (exclude wagon and others...) Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2009-09-27 19:11:50 UTC (rev 595) +++ trunk/pom.xml 2009-09-27 19:15:24 UTC (rev 596) @@ -172,6 +172,26 @@ <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-archiver</artifactId> </exclusion> + + <exclusion> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-http-lightweight</artifactId> + </exclusion> + + <exclusion> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-file</artifactId> + </exclusion> + + <exclusion> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-ssh</artifactId> + </exclusion> + + <exclusion> + <groupId>org.apache.maven.reporting</groupId> + <artifactId>maven-reporting-api</artifactId> + </exclusion> </exclusions> </dependency> @@ -183,6 +203,13 @@ <scope>test</scope> </dependency> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>1.2.9</version> + <scope>test</scope> + </dependency> + </dependencies> <!-- ************************************************************* --> @@ -243,7 +270,7 @@ <maven.version>2.2.1</maven.version> <plexusMailSender.version>1.0-alpha-2</plexusMailSender.version> - <javadoc.version>2.4</javadoc.version> + <javadoc.version>2.6</javadoc.version> <maven.src.dir>${basedir}/src</maven.src.dir> <maven.compile.source>1.6</maven.compile.source> @@ -564,6 +591,12 @@ <goal>jar</goal> </goals> </execution> + <execution> + <id>attach-test-javadocs</id> + <goals> + <goal>test-jar</goal> + </goals> + </execution> </executions> </plugin> @@ -948,6 +981,9 @@ <execution> <id>attach-javadocs</id> </execution> + <execution> + <id>attach-test-javadocs</id> + </execution> </executions> </plugin>
participants (1)
-
tchemit@users.nuiton.org