Thread: [Plexus-svn] SF.net SVN: plexus:[864] trunk/plexus-graph/pom.xml
Status: Alpha
Brought to you by:
rconner
From: <rc...@us...> - 2010-09-07 19:57:22
|
Revision: 864 http://plexus.svn.sourceforge.net/plexus/?rev=864&view=rev Author: rconner Date: 2010-09-07 19:57:16 +0000 (Tue, 07 Sep 2010) Log Message: ----------- reference the javadoc plugin, which causes the javadocs to be part of the generated site docs Modified Paths: -------------- trunk/plexus-graph/pom.xml Modified: trunk/plexus-graph/pom.xml =================================================================== --- trunk/plexus-graph/pom.xml 2010-09-05 20:38:41 UTC (rev 863) +++ trunk/plexus-graph/pom.xml 2010-09-07 19:57:16 UTC (rev 864) @@ -107,9 +107,17 @@ <reporting> + <plugins> + <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>2.7</version> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>2.3</version> <reportSets> @@ -120,7 +128,9 @@ </reportSet> </reportSets> </plugin> + </plugins> + </reporting> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rc...@us...> - 2010-09-08 00:30:17
|
Revision: 867 http://plexus.svn.sourceforge.net/plexus/?rev=867&view=rev Author: rconner Date: 2010-09-08 00:30:11 +0000 (Wed, 08 Sep 2010) Log Message: ----------- updating scm URLs Modified Paths: -------------- trunk/plexus-graph/pom.xml Modified: trunk/plexus-graph/pom.xml =================================================================== --- trunk/plexus-graph/pom.xml 2010-09-07 21:04:37 UTC (rev 866) +++ trunk/plexus-graph/pom.xml 2010-09-08 00:30:11 UTC (rev 867) @@ -91,7 +91,7 @@ <artifactId>maven-release-plugin</artifactId> <version>2.0</version> <configuration> - <tagBase>https://plexus.svn.sourceforge.net/svnroot/plexus/tags/plexus</tagBase> + <tagBase>https://plexus.svn.sourceforge.net/svnroot/plexus/tags/plexus-graph</tagBase> </configuration> </plugin> @@ -135,9 +135,9 @@ <scm> - <connection>scm:svn:http://plexus.svn.sourceforge.net/svnroot/plexus/trunk/plexus</connection> - <developerConnection>scm:svn:https://plexus.svn.sourceforge.net/svnroot/plexus/trunk/plexus</developerConnection> - <url>http://plexus.svn.sourceforge.net/viewvc/plexus/trunk/plexus</url> + <connection>scm:svn:http://plexus.svn.sourceforge.net/svnroot/plexus/trunk/plexus-graph</connection> + <developerConnection>scm:svn:https://plexus.svn.sourceforge.net/svnroot/plexus/trunk/plexus-graph</developerConnection> + <url>http://plexus.svn.sourceforge.net/viewvc/plexus/trunk/plexus-graph</url> </scm> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rc...@us...> - 2010-09-08 14:48:28
|
Revision: 868 http://plexus.svn.sourceforge.net/plexus/?rev=868&view=rev Author: rconner Date: 2010-09-08 14:48:22 +0000 (Wed, 08 Sep 2010) Log Message: ----------- Regressing to version 2.2 of the maven changes plugin, because 2.3 doesn't support formatted content. There is an issue open on the topic, but it's unclear whether it will ever be changed because a fair number of people who think the previous behavior (allowing CDATA) was a bug. Modified Paths: -------------- trunk/plexus-graph/pom.xml Modified: trunk/plexus-graph/pom.xml =================================================================== --- trunk/plexus-graph/pom.xml 2010-09-08 00:30:11 UTC (rev 867) +++ trunk/plexus-graph/pom.xml 2010-09-08 14:48:22 UTC (rev 868) @@ -117,9 +117,12 @@ </plugin> <plugin> + <!-- Version 2.3 no longer allows CDATA sections in the text + content, and so doesn't allow formatting of any kind. + Therefore, I'm sticking with version 2.2 --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> - <version>2.3</version> + <version>2.2</version> <reportSets> <reportSet> <reports> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rc...@us...> - 2010-09-10 22:36:37
|
Revision: 874 http://plexus.svn.sourceforge.net/plexus/?rev=874&view=rev Author: rconner Date: 2010-09-10 22:36:31 +0000 (Fri, 10 Sep 2010) Log Message: ----------- adding some reports Modified Paths: -------------- trunk/plexus-graph/pom.xml Modified: trunk/plexus-graph/pom.xml =================================================================== --- trunk/plexus-graph/pom.xml 2010-09-10 22:21:56 UTC (rev 873) +++ trunk/plexus-graph/pom.xml 2010-09-10 22:36:31 UTC (rev 874) @@ -114,9 +114,109 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> + <configuration> + <!-- External links don't work with site:run for some reason, + but javadoc:javadoc works just fine. --> + <links> + <link>http://commons.apache.org/collections/api-release/</link> + <link>http://logging.apache.org/log4j/1.2/apidocs/</link> + </links> + </configuration> + <reportSets> + <reportSet> + <reports> + <report>javadoc</report> + </reports> + </reportSet> + </reportSets> </plugin> <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jxr-plugin</artifactId> + <version>2.2</version> + <configuration> + <linkJavadoc>true</linkJavadoc> + </configuration> + <reportSets> + <reportSet> + <reports> + <report>jxr</report> + </reports> + </reportSet> + </reportSets> + </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>taglist-maven-plugin</artifactId> + <version>2.4</version> + <configuration> + <tagListOptions> + <tagClasses> + <tagClass> + <displayName>Things To Fix</displayName> + <tags> + <tag> + <matchString>FIXME</matchString> + <matchType>ignoreCase</matchType> + </tag> + </tags> + </tagClass> + <tagClass> + <displayName>Things To Do</displayName> + <tags> + <tag> + <matchString>TODO</matchString> + <matchType>ignoreCase</matchType> + </tag> + </tags> + </tagClass> + </tagClasses> + </tagListOptions> + </configuration> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-report-plugin</artifactId> + <version>2.6</version> + <configuration> + <showSuccess>false</showSuccess> + </configuration> + </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>jdepend-maven-plugin</artifactId> + <version>2.0-beta-2</version> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <version>2.5</version> + <configuration> + <includeTestSourceDirectory>true</includeTestSourceDirectory> + <configLocation>${basedir}/src/main/config/checkstyle/checkstyle.xml</configLocation> + <headerLocation>${basedir}/src/main/config/checkstyle/checkstyle-header.txt</headerLocation> + </configuration> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-pmd-plugin</artifactId> + <version>2.5</version> + <configuration> + <targetJdk>1.5</targetJdk> + <includeTests>true</includeTests> + <rulesets> + <ruleset>${basedir}/src/main/config/pmd/ruleset.xml</ruleset> + </rulesets> + </configuration> + </plugin> + + <plugin> <!-- Version 2.3 no longer allows CDATA sections in the text content, and so doesn't allow formatting of any kind. Therefore, I'm sticking with version 2.2 --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rc...@us...> - 2010-09-14 01:26:44
|
Revision: 877 http://plexus.svn.sourceforge.net/plexus/?rev=877&view=rev Author: rconner Date: 2010-09-14 01:26:38 +0000 (Tue, 14 Sep 2010) Log Message: ----------- make the copy-paste detection a bit more lenient Modified Paths: -------------- trunk/plexus-graph/pom.xml Modified: trunk/plexus-graph/pom.xml =================================================================== --- trunk/plexus-graph/pom.xml 2010-09-13 22:38:45 UTC (rev 876) +++ trunk/plexus-graph/pom.xml 2010-09-14 01:26:38 UTC (rev 877) @@ -210,6 +210,8 @@ <configuration> <targetJdk>1.5</targetJdk> <includeTests>true</includeTests> + <ignoreLiterals>true</ignoreLiterals> + <ignoreIdentifiers>true</ignoreIdentifiers> <rulesets> <ruleset>${basedir}/src/main/config/pmd/ruleset.xml</ruleset> </rulesets> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rc...@us...> - 2010-09-15 22:00:24
|
Revision: 886 http://plexus.svn.sourceforge.net/plexus/?rev=886&view=rev Author: rconner Date: 2010-09-15 22:00:18 +0000 (Wed, 15 Sep 2010) Log Message: ----------- looks like you have to explicitly exclude something to override the default excludes Modified Paths: -------------- trunk/plexus-graph/pom.xml Modified: trunk/plexus-graph/pom.xml =================================================================== --- trunk/plexus-graph/pom.xml 2010-09-15 21:12:21 UTC (rev 885) +++ trunk/plexus-graph/pom.xml 2010-09-15 22:00:18 UTC (rev 886) @@ -80,8 +80,11 @@ <includes> <include>**/Test*.java</include> <include>**/*Test.java</include> - <include>**/*$Test*.java</include> + <include>**/*$Test*</include> </includes> + <excludes> + <exclude>Dummy.java</exclude> + </excludes> </configuration> </plugin> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |