diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2011-12-16 08:49:59 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2011-12-16 08:50:49 +0100 |
commit | f1019b9738089650ed24ae24a41e1567f28ea269 (patch) | |
tree | 332f582bff1d0854f8c5f9e5ec8a03dbd3f0e263 /org.eclipse.jgit.console | |
parent | 84c80be1dc45885969e2d0fa0421f709b8706453 (diff) | |
parent | 78ebffd5f4a65a098a2a41b241747c54905be63d (diff) | |
download | jgit-f1019b9738089650ed24ae24a41e1567f28ea269.tar.gz 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.console')
-rw-r--r-- | org.eclipse.jgit.console/pom.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/org.eclipse.jgit.console/pom.xml b/org.eclipse.jgit.console/pom.xml index c5573c54de..bd99d39cdb 100644 --- a/org.eclipse.jgit.console/pom.xml +++ b/org.eclipse.jgit.console/pom.xml @@ -108,6 +108,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> |