consistent-versions-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.cleartk</groupId>
<artifactId>consistent-versions-plugin</artifactId>
<version>1.1.2</version>
</dependency><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.cleartk</groupId> <artifactId>consistent-versions-plugin</artifactId> <version>1.1.2</version> <packaging>maven-plugin</packaging> <name>Consistent Versions Plugin</name> <description>The Consistent Versions Plugin helps causes the build to fail if there are version conflicts in your dependencies.</description> <url>http://cleartk.googlecode.com/</url> <licenses> <license> <name>The BSD 3-Clause License</name> <url>http://cleartk.googlecode.com/svn/trunk/consistent-versions-plugin/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>steven.bethard</id> <email>steven.bethard@gmail.com</email> <name>Steven Bethard</name> </developer> <developer> <id>philip.ogren</id> <email>philip@ogren.info</email> <name>Philip Ogren</name> </developer> <developer> <id>lee.becker</id> <email>lee.becker@gmail.com</email> <name>Lee Becker</name> </developer> </developers> <scm> <connection>scm:svn:http://cleartk.googlecode.com/svn/tags/consistent-versions-plugin-1.1.2</connection> <developerConnection>scm:svn:https://cleartk.googlecode.com/svn/tags/consistent-versions-plugin-1.1.2</developerConnection> <url>http://cleartk.googlecode.com/svn/tags/consistent-versions-plugin-1.1.2</url> </scm> <prerequisites> <maven>2.2.1</maven> </prerequisites> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> <relativePath /> </parent> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.2.1</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.2.1</version> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <artifactId>maven-eclipse-plugin</artifactId> <version>2.9</version> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>2.3.1</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> </plugin> <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> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>3.1</version> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.3.2</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.1</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.2</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.12.1</version> </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>