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

Commit

Permalink
version bump with merged changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Synapticloop authored and Synapticloop committed Mar 29, 2016
1 parent 22b8285 commit b7ffc3f
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 8 deletions.
18 changes: 12 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,12 @@ uploadFile(String, String, File, String, Map<String, String>)



## Large File Support

Large file support is currently in 'Sneak Peek' mode, which means that it is not available for public consumption yet...



# Building the Package

## *NIX/Mac OS X
Expand Down Expand Up @@ -241,7 +247,7 @@ As such, this is not a repository, but a location to download files from.

This project publishes artefacts to [Maven Central](https://search.maven.org/)

> Note that the latest version can be found [mvn central](http://search.maven.org/#artifactdetails|synapticloop|backblaze-b2-java-api|1.3.2|jar)
> Note that the latest version can be found [mvn central](http://search.maven.org/#artifactdetails|synapticloop|backblaze-b2-java-api|1.3.3|jar)
## maven setup

Expand All @@ -261,19 +267,19 @@ repositories {

```
dependencies {
runtime(group: 'synapticloop', name: 'backblaze-b2-java-api', version: '1.3.2', ext: 'jar')
runtime(group: 'synapticloop', name: 'backblaze-b2-java-api', version: '1.3.3', ext: 'jar')
compile(group: 'synapticloop', name: 'backblaze-b2-java-api', version: '1.3.2', ext: 'jar')
compile(group: 'synapticloop', name: 'backblaze-b2-java-api', version: '1.3.3', ext: 'jar')
}
```

or, more simply for versions of gradle greater than 2.1

```
dependencies {
runtime 'synapticloop:backblaze-b2-java-api:1.3.2'
runtime 'synapticloop:backblaze-b2-java-api:1.3.3'
compile 'synapticloop:backblaze-b2-java-api:1.3.2'
compile 'synapticloop:backblaze-b2-java-api:1.3.3'
}
```

Expand All @@ -283,7 +289,7 @@ dependencies {
<dependency>
<groupId>synapticloop</groupId>
<artifactId>backblaze-b2-java-api</artifactId>
<version>1.3.2</version>
<version>1.3.3</version>
<type>jar</type>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ group = 'synapticloop'
archivesBaseName = 'backblaze-b2-java-api'
description = """A java api for the truly excellent backblaze b2 storage service"""

version = '1.3.2'
version = '1.3.3'

sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down
9 changes: 8 additions & 1 deletion src/docs/usage.md.templar
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,11 @@ uploadFile(String, String, File, Map<String, String>){\n}
uploadFile(String, String, File, String){\n}
uploadFile(String, String, File, String, Map<String, String>){\n}
```{\n}
{\n}
{\n}

{\n}
{\n}
## Large File Support{\n}
{\n}
Large file support is currently in 'Sneak Peek' mode, which means that it is not available for public consumption yet...{\n}
{\n}

0 comments on commit b7ffc3f

Please sign in to comment.