- Revision
- 235
- Author
- mauro
- Date
- 2007-07-07 17:04:41 -0500 (Sat, 07 Jul 2007)
Log Message
Updated to use paranamer to 1.0.1 release. Organised plugins using pluginManagement.
Modified Paths
Diff
Modified: trunk/core/pom.xml (234 => 235)
--- trunk/core/pom.xml 2007-07-07 16:14:45 UTC (rev 234) +++ trunk/core/pom.xml 2007-07-07 22:04:41 UTC (rev 235) @@ -78,7 +78,6 @@ <plugin> <groupId>com.thoughtworks.paranamer</groupId> <artifactId>paranamer-maven-plugin</artifactId> - <version>1.1-SNAPSHOT</version> <configuration> <sourceDirectory>${project.build.testSourceDirectory}</sourceDirectory> <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
Modified: trunk/pom.xml (234 => 235)
--- trunk/pom.xml 2007-07-07 16:14:45 UTC (rev 234) +++ trunk/pom.xml 2007-07-07 22:04:41 UTC (rev 235) @@ -25,7 +25,7 @@ <dependency> <groupId>com.thoughtworks.paranamer</groupId> <artifactId>paranamer-asm</artifactId> - <version>1.1-SNAPSHOT</version> + <version>1.0.1</version> <scope>provided</scope> </dependency> <dependency> @@ -140,48 +140,95 @@ <version>1.0-beta-2</version> </extension> </extensions> + <pluginManagement> + <plugins> + <plugin> + <groupId>com.thoughtworks.paranamer</groupId> + <artifactId>paranamer-asm</artifactId> + <version>1.0.1</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>2.0.2</version> + <configuration> + <source>1.5</source> + <target>1.5</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.3</version> + <configuration> + <includes> + <include>**/*Test.java</include> + </includes> + <excludes> + <exclude>**/*TestCase.java</exclude> + </excludes> + <forkMode>once</forkMode> + <printSummary>true</printSummary> + <useFile>true</useFile> + <systemProperties> + <property> + <name>java.awt.headless</name> + <value>true</value> + </property> + </systemProperties> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-report-plugin</artifactId> + <version>2.3</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>2.0</version> + <executions> + <execution> + <id>attach-javadoc</id> + <phase>package</phase> + <goals> + <goal>jar</goal> + </goals> + <configuration> + <links> + <link>http://java.sun.com/j2se/1.5/docs/api</link> + </links> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-release-plugin</artifactId> + <version>2.0-beta-5</version> + <configuration> + <autoVersionSubmodules>true</autoVersionSubmodules> + <tagBase>https://svn.codehaus.org/waffle/tags</tagBase> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>1.5</source> - <target>1.5</target> - </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> - <version>2.3</version> - <configuration> - <includes> - <include>**/*Test.java</include> - </includes> - <excludes> - <exclude>**/*TestCase.java</exclude> - </excludes> - <forkMode>once</forkMode> - <printSummary>true</printSummary> - <useFile>true</useFile> - <systemProperties> - <property> - <name>java.awt.headless</name> - <value>true</value> - </property> - </systemProperties> - </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> - <configuration> - <tagBase>https://svn.codehaus.org/waffle/tags</tagBase> - </configuration> </plugin> </plugins> </build> @@ -210,21 +257,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> - <version>2.0</version> - <executions> - <execution> - <id>attach-javadoc</id> - <phase>package</phase> - <goals> - <goal>jar</goal> - </goals> - <configuration> - <links> - <link>http://java.sun.com/j2se/1.5/docs/api</link> - </links> - </configuration> - </execution> - </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId>
To unsubscribe from this list please visit:
