Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
merge pr 10, documentr plugin added
Browse files Browse the repository at this point in the history
  • Loading branch information
Synapticloop authored and Synapticloop committed Mar 7, 2016
1 parent 7d74ac9 commit 9ea93a1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ And now for the dependency
<dependency>
<groupId>synapticloop</groupId>
<artifactId>backblaze-b2-java-api</artifactId>
<version>v1.2.3</version>
<version>v1.2.4</version>
<type>jar</type>
</dependency>
```
Expand Down Expand Up @@ -256,19 +256,19 @@ and then include the dependency:

```
dependencies {
runtime(group: 'synapticloop', name: 'backblaze-b2-java-api', version: 'v1.2.3', ext: 'jar')
runtime(group: 'synapticloop', name: 'backblaze-b2-java-api', version: 'v1.2.4', ext: 'jar')
compile(group: 'synapticloop', name: 'backblaze-b2-java-api', version: 'v1.2.3', ext: 'jar')
compile(group: 'synapticloop', name: 'backblaze-b2-java-api', version: 'v1.2.4', ext: 'jar')
}
```

or, more simply for versions of gradle greater than 2.4

```
dependencies {
runtime 'synapticloop:backblaze-b2-java-api:v1.2.3'
runtime 'synapticloop:backblaze-b2-java-api:v1.2.4'
compile 'synapticloop:backblaze-b2-java-api:v1.2.3'
compile 'synapticloop:backblaze-b2-java-api:v1.2.4'
}
```

Expand Down
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@ plugins {
id 'net.saliman.cobertura' version '2.3.0'
id "com.jfrog.bintray" version "1.6"
id 'co.riiid.gradle' version '0.4.2'
id 'synapticloop.documentr' version 'v1.1.6'
}

group = 'synapticloop'
archivesBaseName = 'backblaze-b2-java-api'
description = """A java api for the truly excellent backblaze b2 storage service"""

version = 'v1.2.3'
version = 'v1.2.4'

sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down

0 comments on commit 9ea93a1

Please sign in to comment.