Skip to content

Commit

Permalink
Release 4.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mkarneim committed Mar 10, 2019
1 parent 0615ca7 commit 1ee24dc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-4.2.2-jar-with-dependencies.jar`] to get PojoBuilder complete with all dependent libraries included.
you might want to download the [`pojobuilder-4.2.3-jar-with-dependencies.jar`] to get PojoBuilder complete with all dependent libraries included.

How To Use
----------
Expand Down Expand Up @@ -343,7 +343,7 @@ The `javac` compiler will auto-detect the presence of PojoBuilder if `pojobuilde

For example:

javac -cp pojobuilder-4.2.2-jar-with-dependencies.jar Contact.java
javac -cp pojobuilder-4.2.3-jar-with-dependencies.jar Contact.java

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

Expand All @@ -356,7 +356,7 @@ Add the following to your project's `pom.xml` to configure the PojoBuilder annot
<dependency>
<groupId>net.karneim</groupId>
<artifactId>pojobuilder</artifactId>
<version>4.2.2</version>
<version>4.2.3</version>
<!-- 'provided' scope because this is only needed during compilation -->
<scope>provided</scope>
</dependency>
Expand All @@ -378,7 +378,7 @@ repositories {
}
dependencies {
compile 'net.karneim:pojobuilder:4.2.2'
compile 'net.karneim:pojobuilder:4.2.3'
}
```
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 All @@ -396,8 +396,8 @@ configurations {
}
dependencies {
codeGeneration 'net.karneim:pojobuilder:4.2.2'
compileOnly 'net.karneim:pojobuilder:4.2.2:annotations'
codeGeneration 'net.karneim:pojobuilder:4.2.3'
compileOnly 'net.karneim:pojobuilder:4.2.3:annotations'
}
compileJava.classpath += configurations.codeGeneration
compileTestJava.classpath += configurations.codeGeneration
Expand All @@ -421,7 +421,7 @@ To make pojobuilder work again, replace the used dependency scope with `annotati

```groovy
dependencies {
annotationProcessor 'net.karneim:pojobuilder:4.2.2'
annotationProcessor 'net.karneim:pojobuilder:4.2.3'
}
```

Expand Down Expand Up @@ -459,7 +459,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-4.2.2-annotations.jar` to your project classpath
* Add `pojobuilder-4.2.3-annotations.jar` to your project classpath
* Navigate to "Java Compiler / Annotation Processing" tree node
* Check "Enable project specific settings"
* Check "Enable annotation processing"
Expand All @@ -468,7 +468,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-4.2.2-jar-with-dependencies.jar`
* Add `pojobuiler-4.2.3-jar-with-dependencies.jar`
* Click "OK"

How To Build
Expand All @@ -480,7 +480,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-4.2.2-jar-with-dependencies.jar`]: https://oss.sonatype.org/content/repositories/releases/net/karneim/pojobuilder/4.2.2/pojobuilder-4.2.2-jar-with-dependencies.jar
[`pojobuilder-4.2.3-jar-with-dependencies.jar`]: https://oss.sonatype.org/content/repositories/releases/net/karneim/pojobuilder/4.2.3/pojobuilder-4.2.3-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

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ apply plugin: 'me.champeau.gradle.jmh'

group = 'net.karneim'
archivesBaseName = "pojobuilder"
version = '4.2.2'
version = '4.2.3'
sourceCompatibility = 1.7
eclipse.jdt.sourceCompatibility = 1.7

Expand Down

0 comments on commit 1ee24dc

Please sign in to comment.