Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Update GAX version to 0.0.3 #22

Merged
merged 1 commit into from
Mar 8, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ If you are using Maven, add this to your pom.xml file
<dependency>
<groupId>com.google.api</groupId>
<artifactId>gax</artifactId>
<version>0.0.2</version>
<version>0.0.3</version>
</dependency>
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.api:gax:0.0.2'
compile 'com.google.api:gax:0.0.3'
```
If you are using SBT, add this to your dependencies
```Scala
libraryDependencies += "com.google.api" % "gax" % "0.0.2"
libraryDependencies += "com.google.api" % "gax" % "0.0.3"
```

Java Versions
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apply plugin: 'signing'

group = "com.google.api"
archivesBaseName = "gax"
version = "0.0.3-SNAPSHOT"
version = "0.0.3"

sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down