Skip to content

Commit

Permalink
Set version to 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mkarneim committed Sep 2, 2014
1 parent e429986 commit 29e2f3f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ The `javac` compiler will auto-detect the presence of PojoBuilder if `pojobuilde

For example:

javac -cp pojobuilder-3.0.0-jar-with-dependencies.jar Contact.java
javac -cp pojobuilder-3.1.0-jar-with-dependencies.jar Contact.java

will generate a `ContactBuilder` if `Contact` is annotated with `@GeneratePojoBuilder`.

Expand All @@ -318,7 +318,7 @@ Add the following to your project's `pom.xml` to configure the PojoBuilder annot
<dependency>
<groupId>net.karneim</groupId>
<artifactId>pojobuilder</artifactId>
<version>3.0.0</version>
<version>3.1.0</version>
<!-- 'provided' scope because this is only needed during compilation -->
<scope>provided</scope>
</dependency>
Expand All @@ -343,7 +343,7 @@ configurations {
}
dependencies {
codeGeneration 'net.karneim:pojobuilder:3.0.0'
codeGeneration 'net.karneim:pojobuilder:3.1.0'
compile configurations.codeGeneration
}
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ apply plugin: 'signing'

group = 'net.karneim'
archivesBaseName = "pojobuilder"
version = '3.0.0-SNAPSHOT'
version = '3.1.0'
sourceCompatibility = 1.6

task wrapper(type: Wrapper) { gradleVersion = '2.0' }
Expand Down

0 comments on commit 29e2f3f

Please sign in to comment.