Skip to content

Commit

Permalink
Release 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mkarneim committed Dec 7, 2014
1 parent cfb4c5f commit b455520
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ The `javac` compiler will auto-detect the presence of PojoBuilder if `pojobuilde

For example:

javac -cp pojobuilder-3.3.0-jar-with-dependencies.jar Contact.java
javac -cp pojobuilder-3.3.1-jar-with-dependencies.jar Contact.java

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

Expand All @@ -339,7 +339,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.3.0</version>
<version>3.3.1</version>
<!-- 'provided' scope because this is only needed during compilation -->
<scope>provided</scope>
</dependency>
Expand All @@ -361,7 +361,7 @@ repositories {
}
dependencies {
compile 'net.karneim:pojobuilder:3.3.0'
compile 'net.karneim:pojobuilder:3.3.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 All @@ -379,7 +379,7 @@ configurations {
}
dependencies {
codeGeneration 'net.karneim:pojobuilder:3.3.0'
codeGeneration 'net.karneim:pojobuilder:3.3.1'
}
compileJava.classpath += configurations.codeGeneration
compileTestJava.classpath += configurations.codeGeneration
Expand Down Expand Up @@ -430,7 +430,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.3.0-annotations.jar` to your project classpath
* Add `pojobuilder-3.3.1-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 @@ -439,7 +439,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.3.0-jar-with-dependencies.jar`
* Add `pojobuiler-3.3.1-jar-with-dependencies.jar`
* Click "OK"

How To Build
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ apply plugin: 'com.github.kt3k.coveralls'

group = 'net.karneim'
archivesBaseName = "pojobuilder"
version = '3.4.0-SNAPSHOT'
version = '3.3.1'
sourceCompatibility = 1.6

repositories.mavenCentral()
Expand Down

0 comments on commit b455520

Please sign in to comment.