Skip to content

Commit

Permalink
Prepare release 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mkarneim committed Sep 16, 2014
1 parent 952b826 commit 9d5225e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ The `javac` compiler will auto-detect the presence of PojoBuilder if `pojobuilde

For example:

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

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

Expand All @@ -319,7 +319,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.1.0</version>
<version>3.1.1</version>
<!-- 'provided' scope because this is only needed during compilation -->
<scope>provided</scope>
</dependency>
Expand All @@ -340,7 +340,7 @@ repositories {
}
dependencies {
compile 'net.karneim:pojobuilder:3.1.0'
compile 'net.karneim:pojobuilder:3.1.1'
}
```
Please note that this not only adds the PojoBuilder and its dependencies to your compile-time class path but also to your run-time class path.
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.2.0-SNAPSHOT'
version = '3.1.1'
sourceCompatibility = 1.6

task wrapper(type: Wrapper) { gradleVersion = '2.0' }
Expand Down
2 changes: 1 addition & 1 deletion docs/example_maven_pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<dependency>
<groupId>net.karneim</groupId>
<artifactId>pojobuilder</artifactId>
<version>3.0.0</version>
<version>3.1.1</version>
<scope>system</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 9d5225e

Please sign in to comment.