diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2011-12-15 15:50:46 -0800 |
---|---|---|
committer | Kevin Sawicki <kevin@github.com> | 2011-12-15 15:50:46 -0800 |
commit | e178ba20d096e9b1572b2fdeb5b1e207ea55802c (patch) | |
tree | 0eb08a563688909547433d67e30be44447270ce3 | |
parent | 3c544647b7b3b291ad1f3661881f6d3bf9f90da4 (diff) | |
download | jgit-e178ba20d096e9b1572b2fdeb5b1e207ea55802c.tar.gz jgit-e178ba20d096e9b1572b2fdeb5b1e207ea55802c.zip |
Add API checking using clirr
In order to generate API reports run: mvn clirr:clirr
The reports are generated to the folder
target/site/clirr-report.html under the respective
project.
In order to check API compatibility and fail the build
on incompatible changes run: mvn clirr:check
For now we compare the API against the latest release
1.1.0.201109151100-r.
Bug: 336849
Change-Id: I21baaf3a6883c5b4db263f712705cc7b8ab6d888
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Signed-off-by: Kevin Sawicki <kevin@github.com>
-rw-r--r-- | org.eclipse.jgit.ant/pom.xml | 19 | ||||
-rw-r--r-- | org.eclipse.jgit.console/pom.xml | 19 | ||||
-rw-r--r-- | org.eclipse.jgit.http.server/pom.xml | 19 | ||||
-rw-r--r-- | org.eclipse.jgit.storage.dht/pom.xml | 19 | ||||
-rw-r--r-- | org.eclipse.jgit/pom.xml | 20 | ||||
-rw-r--r-- | pom.xml | 19 |
6 files changed, 115 insertions, 0 deletions
diff --git a/org.eclipse.jgit.ant/pom.xml b/org.eclipse.jgit.ant/pom.xml index 22bea9aa5d..bbb7e59fdf 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> diff --git a/org.eclipse.jgit.console/pom.xml b/org.eclipse.jgit.console/pom.xml index a21632dcae..db9e7292b4 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> diff --git a/org.eclipse.jgit.http.server/pom.xml b/org.eclipse.jgit.http.server/pom.xml index 433c6682f4..413d5d93f0 100644 --- a/org.eclipse.jgit.http.server/pom.xml +++ b/org.eclipse.jgit.http.server/pom.xml @@ -125,6 +125,25 @@ </archive> </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> diff --git a/org.eclipse.jgit.storage.dht/pom.xml b/org.eclipse.jgit.storage.dht/pom.xml index bd1d2fd5a2..2c2b37e98d 100644 --- a/org.eclipse.jgit.storage.dht/pom.xml +++ b/org.eclipse.jgit.storage.dht/pom.xml @@ -157,6 +157,25 @@ </execution> </executions> </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> diff --git a/org.eclipse.jgit/pom.xml b/org.eclipse.jgit/pom.xml index 97e08f6e7b..33e972e379 100644 --- a/org.eclipse.jgit/pom.xml +++ b/org.eclipse.jgit/pom.xml @@ -142,7 +142,13 @@ </archive> </configuration> </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>clirr-maven-plugin</artifactId> + </plugin> </plugins> + <pluginManagement> <plugins> <plugin> @@ -155,4 +161,18 @@ </plugins> </pluginManagement> </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> @@ -130,14 +130,23 @@ <maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format> <bundle-manifest>${project.build.directory}/META-INF/MANIFEST.MF</bundle-manifest> + <jgit-last-release-version>1.1.0.201109151100-r</jgit-last-release-version> <jsch-version>0.1.44-1</jsch-version> <junit-version>4.5</junit-version> <args4j-version>2.0.12</args4j-version> <servlet-api-version>2.5</servlet-api-version> <jetty-version>7.1.6.v20100715</jetty-version> <protobuf-version>2.4.0a</protobuf-version> + <clirr-version>2.3</clirr-version> </properties> + <repositories> + <repository> + <id>jgit-repository</id> + <url>http://download.eclipse.org/jgit/maven</url> + </repository> + </repositories> + <build> <pluginManagement> <plugins> @@ -246,6 +255,16 @@ </execution> </executions> </plugin> + + <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> </pluginManagement> |