Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2011-12-16 07:49:59 +0000
committerMatthias Sohn2011-12-16 07:50:49 +0000
commitf1019b9738089650ed24ae24a41e1567f28ea269 (patch)
tree332f582bff1d0854f8c5f9e5ec8a03dbd3f0e263 /org.eclipse.jgit.ant/pom.xml
parent84c80be1dc45885969e2d0fa0421f709b8706453 (diff)
parent78ebffd5f4a65a098a2a41b241747c54905be63d (diff)
downloadjgit-f1019b9738089650ed24ae24a41e1567f28ea269.tar.gz
jgit-f1019b9738089650ed24ae24a41e1567f28ea269.tar.xz
jgit-f1019b9738089650ed24ae24a41e1567f28ea269.zip
Merge branch 'stable-1.2'
* stable-1.2: Add API checking using clirr Fix MergeCommandTest to pass if File.executable is not supported Fix ResolveMerger not to add paths with FileMode 0 Change-Id: I86e7194a40acd6dfa3d433f1d17c01bdf5bb0d9c Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.ant/pom.xml')
-rw-r--r--org.eclipse.jgit.ant/pom.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/org.eclipse.jgit.ant/pom.xml b/org.eclipse.jgit.ant/pom.xml
index fcd6f8918a..9a55466f4a 100644
--- a/org.eclipse.jgit.ant/pom.xml
+++ b/org.eclipse.jgit.ant/pom.xml
@@ -110,6 +110,25 @@
<encoding>UTF-8</encoding>
</configuration>
</plugin>
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>clirr-maven-plugin</artifactId>
+ </plugin>
</plugins>
</build>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>clirr-maven-plugin</artifactId>
+ <version>${clirr-version}</version>
+ <configuration>
+ <comparisonVersion>${jgit-last-release-version}</comparisonVersion>
+ <minSeverity>info</minSeverity>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
</project>

Back to the top