Author: schor Date: Tue Jul 9 19:41:17 2013 New Revision: 1501490 URL: http://svn.apache.org/r1501490 Log: no Jira - cleanup JCasgen Maven Plugin pom: reorder build stanzas to conventional order (pluginmanagement before plugins), remove version from javadoc (so it picks up parent's version - and in doing so, gets the javadoc security patch fix), remove the lifecycle mapping - duplicates what's in the parent (in v 6-SNAPSHOT)
Modified: uima/uimaj/trunk/jcasgen-maven-plugin/pom.xml Modified: uima/uimaj/trunk/jcasgen-maven-plugin/pom.xml URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/jcasgen-maven-plugin/pom.xml?rev=1501490&r1=1501489&r2=1501490&view=diff ============================================================================== --- uima/uimaj/trunk/jcasgen-maven-plugin/pom.xml (original) +++ uima/uimaj/trunk/jcasgen-maven-plugin/pom.xml Tue Jul 9 19:41:17 2013 @@ -70,6 +70,25 @@ </dependency> </dependencies> <build> + <pluginManagement> + <plugins> + <plugin> + <artifactId>maven-javadoc-plugin</artifactId> +<!-- <version>2.8.1</version> --> + <configuration> + <!-- avoiding javadoc warnings caused by Mojo annotations --> + <tagletArtifacts> + <tagletArtifact> + <groupId>org.apache.maven.plugin-tools</groupId> + <artifactId>maven-plugin-tools-javadoc</artifactId> + <version>2.9</version> + </tagletArtifact> + </tagletArtifacts> + </configuration> + </plugin> + </plugins> + </pluginManagement> + <plugins> <plugin> <artifactId>maven-invoker-plugin</artifactId> @@ -126,55 +145,5 @@ </executions> </plugin> </plugins> - <pluginManagement> - <plugins> - <plugin> - <artifactId>maven-javadoc-plugin</artifactId> -<!-- <version>2.8.1</version> --> - <configuration> - <!-- avoiding javadoc warnings caused by Mojo annotations --> - <tagletArtifacts> - <tagletArtifact> - <groupId>org.apache.maven.plugin-tools</groupId> - <artifactId>maven-plugin-tools-javadoc</artifactId> - <version>2.9</version> - </tagletArtifact> - </tagletArtifacts> - </configuration> - </plugin> - <!--This plugin's configuration is used to store Eclipse m2e settings - only. It has no influence on the Maven build itself. --> - <plugin> - <groupId>org.eclipse.m2e</groupId> - <artifactId>lifecycle-mapping</artifactId> - <version>1.0.0</version> - <configuration> - <lifecycleMappingMetadata> - <pluginExecutions> - <pluginExecution> - <pluginExecutionFilter> - <groupId> - org.apache.maven.plugins - </groupId> - <artifactId> - maven-enforcer-plugin - </artifactId> - <versionRange> - [1.0,) - </versionRange> - <goals> - <goal>enforce</goal> - </goals> - </pluginExecutionFilter> - <action> - <ignore /> - </action> - </pluginExecution> - </pluginExecutions> - </lifecycleMappingMetadata> - </configuration> - </plugin> - </plugins> - </pluginManagement> </build> </project>