From 29e2f3fb9c21702e2936bea365f8985c9e28498e Mon Sep 17 00:00:00 2001 From: mkarneim Date: Tue, 2 Sep 2014 15:09:25 +0200 Subject: [PATCH] Set version to 3.1.0 --- README.md | 6 +++--- build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4676cc6..84cf0dc 100644 --- a/README.md +++ b/README.md @@ -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`. @@ -318,7 +318,7 @@ Add the following to your project's `pom.xml` to configure the PojoBuilder annot net.karneim pojobuilder - 3.0.0 + 3.1.0 provided @@ -343,7 +343,7 @@ configurations { } dependencies { - codeGeneration 'net.karneim:pojobuilder:3.0.0' + codeGeneration 'net.karneim:pojobuilder:3.1.0' compile configurations.codeGeneration } ``` diff --git a/build.gradle b/build.gradle index f634002..952b658 100644 --- a/build.gradle +++ b/build.gradle @@ -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' }