Skip to content

Commit

Permalink
upgraded version in *.md files to 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
siom79 committed Aug 30, 2022
1 parent 82688bc commit 39e5677
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -3,7 +3,7 @@ The website is located at [https://siom79.github.io/japicmp](https://siom79.gith
# japicmp
japicmp is a tool to compare two versions of a jar archive:
``` bash
java -jar japicmp-0.15.7-jar-with-dependencies.jar -n new-version.jar -o old-version.jar
java -jar japicmp-0.16.0-jar-with-dependencies.jar -n new-version.jar -o old-version.jar
```
It can also be used as a library:
```java
Expand All @@ -17,7 +17,7 @@ japicmp is available in the Maven Central Repository:
<dependency>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp</artifactId>
<version>0.15.7</version>
<version>0.16.0</version>
</dependency>
```
A maven plugin allows you to integrate the checks into your build:
Expand All @@ -26,7 +26,7 @@ A maven plugin allows you to integrate the checks into your build:
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.15.7</version>
<version>0.16.0</version>
<configuration>
<oldVersion>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions src/site/markdown/CliTool.md
Expand Up @@ -136,13 +136,13 @@ OPTIONS
When your library implements interfaces or extends classes from other libraries than the JDK and you want to evaluate binary
compatibility you must specify the classpath for the two different versions:

java -jar japicmp-0.15.7-jar-with-dependencies.jar -n new-version.jar -o old-version.jar --new-classpath other-library-v2.jar
java -jar japicmp-0.16.0-jar-with-dependencies.jar -n new-version.jar -o old-version.jar --new-classpath other-library-v2.jar
--old-classpath other-library-v1.jar

In case the classpath for both versions did not change, you can add the library using the standard way:

java -cp japicmp-0.15.7-jar-with-dependencies.jar;otherLibrary.jar japicmp.JApiCmp -n new-version.jar -o old-version.jar
java -cp japicmp-0.16.0-jar-with-dependencies.jar;otherLibrary.jar japicmp.JApiCmp -n new-version.jar -o old-version.jar

For reporting purposes you can also provide more than one jar as old or new version(s):

java -jar japicmp-0.15.7-jar-with-dependencies.jar -o lib1-old.jar;lib2-old.jar -n lib1-new.jar;lib2-new.jar
java -jar japicmp-0.16.0-jar-with-dependencies.jar -o lib1-old.jar;lib2-old.jar -n lib1-new.jar;lib2-new.jar
12 changes: 6 additions & 6 deletions src/site/markdown/MavenPlugin.md
Expand Up @@ -8,7 +8,7 @@ The maven plugin can be included in the pom.xml file of your artifact in the fol
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.15.7</version>
<version>0.16.0</version>
<configuration>
<oldVersion>
<dependency>
Expand Down Expand Up @@ -44,7 +44,7 @@ You can also leave out the &lt;oldVersion&gt; and &lt;newVersion&gt; elements:
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.15.7</version>
<version>0.16.0</version>
<configuration>
<parameter>
<!-- see documentation -->
Expand All @@ -68,7 +68,7 @@ to configure the latest version more precisely (e.g. only GA versions), then you
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.15.7</version>
<version>0.16.0</version>
<configuration>
<parameter>
<oldVersionPattern>\d+\.\d+\.\d+\.GA</oldVersionPattern>
Expand Down Expand Up @@ -111,13 +111,13 @@ An advanced configuration can utilize the following parameters:
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.15.7</version>
<version>0.16.0</version>
<configuration>
<oldVersion>
<dependency>
<groupId>japicmp</groupId>
<artifactId>japicmp-test-v1</artifactId>
<version>0.15.7</version>
<version>0.16.0</version>
<type>jar</type>
</dependency>
</oldVersion>
Expand Down Expand Up @@ -355,7 +355,7 @@ Alternatively it can be used inside the `<reporting/>` tag in order to be invoke
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.15.7</version>
<version>0.16.0</version>
<reportSets>
<reportSet>
<reports>
Expand Down
6 changes: 3 additions & 3 deletions src/site/markdown/index.md
Expand Up @@ -2,7 +2,7 @@

japicmp is a tool to compare two versions of a jar archive:

java -jar japicmp-0.15.7-jar-with-dependencies.jar -n new-version.jar -o old-version.jar
java -jar japicmp-0.16.0-jar-with-dependencies.jar -n new-version.jar -o old-version.jar

It can also be used as a library:

Expand All @@ -15,7 +15,7 @@ japicmp is available in the Maven Central Repository:
<dependency>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp</artifactId>
<version>0.15.7</version>
<version>0.16.0</version>
</dependency>

A maven plugin allows you to integrate the checks into your build:
Expand All @@ -24,7 +24,7 @@ A maven plugin allows you to integrate the checks into your build:
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.15.7</version>
<version>0.16.0</version>
<configuration>
<oldVersion>
<dependency>
Expand Down

0 comments on commit 39e5677

Please sign in to comment.