@@ -15,7 +15,7 @@ Using BridgeDb dependencies
1515The [ BridgeDb releases] ( https://github.com/bridgedb/BridgeDb/releases ) are published to
1616[ Maven Central] ( http://central.maven.org/maven2/org/bridgedb/ ) , which means you can use the BridgeDb JARs without needing to compile BridgeDb.
1717
18- Usage depends on which module you require. The examples below assumes artifact ` org.bridgedb.bio ` and version ` 3.1.5 ` :
18+ Usage depends on which module you require. The examples below assumes artifact ` org.bridgedb.bio ` and version ` 3.1.6 ` :
1919
2020For [ Maven] ( https://maven.apache.org/ ) :
2121
@@ -24,27 +24,27 @@ For [Maven](https://maven.apache.org/):
2424 <dependency >
2525 <groupId >org.bridgedb</groupId >
2626 <artifactId >org.bridgedb.bio</artifactId >
27- <version >3.1.5 </version >
27+ <version >3.1.6 </version >
2828 </dependency >
2929</dependencies >
3030```
3131
3232For [ Gradle] ( https://gradle.org/ ) :
3333
3434``` gradle
35- compile group: 'org.bridgedb', name: 'org.bridgedb.bio', version: '3.1.5 '
35+ compile group: 'org.bridgedb', name: 'org.bridgedb.bio', version: '3.1.6 '
3636```
3737
3838For [ Ivy] ( http://ant.apache.org/ivy/ ) :
3939
4040``` xml
41- <dependency org =" org.bridgedb" name =" org.bridgedb.bio" rev =" 3.1.5 " />
41+ <dependency org =" org.bridgedb" name =" org.bridgedb.bio" rev =" 3.1.6 " />
4242```
4343
4444For [ Buildr] ( https://buildr.apache.org/ ) :
4545
4646``` buildr
47- 'org.bridgedb:org.bridgedb.bio:jar:3.1.5 '
47+ 'org.bridgedb:org.bridgedb.bio:jar:3.1.6 '
4848```
4949
5050
@@ -135,8 +135,8 @@ To make the release, run the following commands. Mind you, this requires you
135135to have an approved Sonatype (http://oss.sonatype.org/ ) account with push rights:
136136
137137``` shell
138- mvn versions:set -DnewVersion=3.1.5
139- mvn -f pom-java8.xml versions:set -DnewVersion=3.1.5
138+ mvn versions:set -DnewVersion=3.1.6
139+ mvn -f pom-java8.xml versions:set -DnewVersion=3.1.6
140140mvn clean deploy
141141```
142142
@@ -146,8 +146,8 @@ and everything.
146146To make a development (SNAPSHOT) release, use:
147147
148148``` shell
149- mvn versions:set -DnewVersion=3.1.6 -SNAPSHOT
150- mvn -f pom-java8.xml versions:set -DnewVersion=3.1.6 -SNAPSHOT
149+ mvn versions:set -DnewVersion=3.1.7 -SNAPSHOT
150+ mvn -f pom-java8.xml versions:set -DnewVersion=3.1.7 -SNAPSHOT
151151mvn clean deploy
152152```
153153
0 commit comments