From 36c805f6095fc90a1be8d1f2a6a7d3a0196a47ec Mon Sep 17 00:00:00 2001 From: Michael Karneim Date: Wed, 11 Jan 2017 09:47:21 +0100 Subject: [PATCH] Release 3.5.0 --- README.md | 16 ++++++++-------- build.gradle | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 3d8e9ce..7804ecd 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ For older versions and a *change log* please see the [release history page]. PojoBuilder *binaries* are available for download at [Sonatype OSS Maven Repository] and [Maven Central]. If you don't use any build automation tool that supports maven repos, -you might want to download the [`pojobuilder-3.4.3-jar-with-dependencies.jar`] to get PojoBuilder complete with all dependent libraries included. +you might want to download the [`pojobuilder-3.5.0-jar-with-dependencies.jar`] to get PojoBuilder complete with all dependent libraries included. How To Use ---------- @@ -340,7 +340,7 @@ The `javac` compiler will auto-detect the presence of PojoBuilder if `pojobuilde For example: - javac -cp pojobuilder-3.4.3-jar-with-dependencies.jar Contact.java + javac -cp pojobuilder-3.5.0-jar-with-dependencies.jar Contact.java will generate a `ContactBuilder` if `Contact` is annotated with `@GeneratePojoBuilder`. @@ -353,7 +353,7 @@ Add the following to your project's `pom.xml` to configure the PojoBuilder annot net.karneim pojobuilder - 3.4.3 + 3.5.0 provided @@ -375,7 +375,7 @@ repositories { } dependencies { - compile 'net.karneim:pojobuilder:3.4.3' + compile 'net.karneim:pojobuilder:3.5.0' } ``` 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. @@ -393,7 +393,7 @@ configurations { } dependencies { - codeGeneration 'net.karneim:pojobuilder:3.4.3' + codeGeneration 'net.karneim:pojobuilder:3.5.0' } compileJava.classpath += configurations.codeGeneration compileTestJava.classpath += configurations.codeGeneration @@ -444,7 +444,7 @@ Do the following to enable PojoBuilder for your Eclipse project: * Open your project's properties dialog * Navigate to "Java Build Path" tree node * Open the "Libraries" tab -* Add `pojobuilder-3.4.3-annotations.jar` to your project classpath +* Add `pojobuilder-3.5.0-annotations.jar` to your project classpath * Navigate to "Java Compiler / Annotation Processing" tree node * Check "Enable project specific settings" * Check "Enable annotation processing" @@ -453,7 +453,7 @@ Do the following to enable PojoBuilder for your Eclipse project: * Navigate to "Java Compiler / Annotation Processing / Factory Path" tree node * Check "Enable project specific settings" * Click "Add JARs..." -* Add `pojobuiler-3.4.3-jar-with-dependencies.jar` +* Add `pojobuiler-3.5.0-jar-with-dependencies.jar` * Click "OK" How To Build @@ -465,7 +465,7 @@ If you want to compile this project's sources yourself you can use Gradle (see [ [JavaWriter]: https://github.com/square/javawriter [Sonatype OSS Maven Repository]: https://oss.sonatype.org/content/repositories/releases/net/karneim/pojobuilder [Maven Central]: http://search.maven.org/#search|ga|1|a%3A%22pojobuilder%22 -[`pojobuilder-3.4.3-jar-with-dependencies.jar`]: https://oss.sonatype.org/content/repositories/releases/net/karneim/pojobuilder/3.4.3/pojobuilder-3.4.3-jar-with-dependencies.jar +[`pojobuilder-3.5.0-jar-with-dependencies.jar`]: https://oss.sonatype.org/content/repositories/releases/net/karneim/pojobuilder/3.5.0/pojobuilder-3.5.0-jar-with-dependencies.jar [javac documentation]: http://docs.oracle.com/javase/6/docs/technotes/tools/solaris/javac.html#processing [@ConstructorProperties]: http://docs.oracle.com/javase/6/docs/api/java/beans/ConstructorProperties.html diff --git a/build.gradle b/build.gradle index 925d843..05dc1da 100644 --- a/build.gradle +++ b/build.gradle @@ -36,7 +36,7 @@ apply plugin: 'com.github.kt3k.coveralls' group = 'net.karneim' archivesBaseName = "pojobuilder" -version = '3.5.0-SNAPSHOT' +version = '3.5.0' sourceCompatibility = 1.6 eclipse.jdt.sourceCompatibility = 1.7