Skip to content

Instantly share code, notes, and snippets.

@electrum
Created November 26, 2012 21:13
Show Gist options
  • Save electrum/4150641 to your computer and use it in GitHub Desktop.
Save electrum/4150641 to your computer and use it in GitHub Desktop.
maven-dependency-versions-check-plugin for guava
<plugin>
<groupId>com.ning.maven.plugins</groupId>
<artifactId>maven-dependency-versions-check-plugin</artifactId>
<version>2.0.2</version>
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<warnIfMajorVersionIsHigher>true</warnIfMajorVersionIsHigher>
<failBuildInCaseOfConflict>true</failBuildInCaseOfConflict>
<resolvers>
<resolver>
<strategyName>apr</strategyName>
<includes>
<include>com.google.guava:guava</include>
</includes>
</resolver>
</resolvers>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment