Author: manaRH Date: 2012-05-28 09:06:36 -0400 (Mon, 28 May 2012) New Revision: 14785
Modified: branches/enterprise/WFK-2_0/jboss-seam-ui/pom.xml branches/enterprise/WFK-2_0/jboss-seam/pom.xml Log: moved javadoc from profile distribution to default build Signed-off-by: Marek Novotn?\195?\189 <[email protected]> Modified: branches/enterprise/WFK-2_0/jboss-seam/pom.xml =================================================================== --- branches/enterprise/WFK-2_0/jboss-seam/pom.xml 2012-05-28 13:06:28 UTC (rev 14784) +++ branches/enterprise/WFK-2_0/jboss-seam/pom.xml 2012-05-28 13:06:36 UTC (rev 14785) @@ -41,9 +41,29 @@ <suiteXmlFile>${basedir}/src/test/java/org/jboss/seam/test/unit/testng.xml</suiteXmlFile> </suiteXmlFiles> </configuration> - </plugin> - + <plugin> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <links> + <link>http://docs.oracle.com/javase/6/docs/api/</link> + </links> + <keywords>true</keywords> + <author>true</author> + <stylesheetfile>jdstyle.css</stylesheetfile> + <doctitle>JBoss Seam ${project.name} API ${project.version}</doctitle> <!-- Used by javadoc:javadoc goal --> + <detectOfflineLinks>false</detectOfflineLinks> + </configuration> + <executions> + <execution> + <id>attach-javadocs</id> + <phase>package</phase> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <!-- <version>1.6</version> --> @@ -447,29 +467,7 @@ </execution> </executions> </plugin> - <plugin> - <artifactId>maven-javadoc-plugin</artifactId> - <version>2.7</version> - <configuration> - <links> - <link>http://docs.oracle.com/javase/6/docs/api/</link> - </links> - <keywords>true</keywords> - <author>true</author> - <stylesheetfile>jdstyle.css</stylesheetfile> - <doctitle>JBoss Seam ${project.name} API ${project.version}</doctitle> <!-- Used by javadoc:javadoc goal --> - <detectOfflineLinks>false</detectOfflineLinks> - </configuration> - <executions> - <execution> - <id>attach-javadocs</id> - <phase>package</phase> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin></plugins> + </plugins> </build> </profile> </profiles> Modified: branches/enterprise/WFK-2_0/jboss-seam-ui/pom.xml =================================================================== --- branches/enterprise/WFK-2_0/jboss-seam-ui/pom.xml 2012-05-28 13:06:28 UTC (rev 14784) +++ branches/enterprise/WFK-2_0/jboss-seam-ui/pom.xml 2012-05-28 13:06:36 UTC (rev 14785) @@ -40,8 +40,29 @@ </library> </configuration> </plugin> - - + <plugin> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <links> + <link>http://docs.oracle.com/javase/6/docs/api/</link> + </links> + <keywords>true</keywords> + <author>true</author> + <stylesheetfile>jdstyle.css</stylesheetfile> + <doctitle>JBoss Seam ${project.name} API ${project.version}</doctitle> + <!-- Used by javadoc:javadoc goal --> + <detectOfflineLinks>false</detectOfflineLinks> + </configuration> + <executions> + <execution> + <id>attach-javadocs</id> + <phase>package</phase> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> @@ -153,7 +174,7 @@ <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> - <classifier>jdk15</classifier> + <scope>test</scope> </dependency> </dependencies> @@ -205,30 +226,6 @@ </execution> </executions> </plugin> - <plugin> - <artifactId>maven-javadoc-plugin</artifactId> - <version>2.7</version> - <configuration> - <links> - <link>http://docs.oracle.com/javase/6/docs/api/</link> - </links> - <keywords>true</keywords> - <author>true</author> - <stylesheetfile>jdstyle.css</stylesheetfile> - <doctitle>JBoss Seam ${project.name} API ${project.version}</doctitle> - <!-- Used by javadoc:javadoc goal --> - <detectOfflineLinks>false</detectOfflineLinks> - </configuration> - <executions> - <execution> - <id>attach-javadocs</id> - <phase>package</phase> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin> </plugins> </build> </profile> _______________________________________________ seam-commits mailing list [email protected] https://lists.jboss.org/mailman/listinfo/seam-commits
