@@ -53,7 +53,7 @@ For older versions and a *change log* please see the [release history page].
53
53
PojoBuilder * binaries* are available for download at [ Sonatype OSS Maven Repository] and [ Maven Central] .
54
54
55
55
If you don't use any build automation tool that supports maven repos,
56
- you might want to download the [ ` pojobuilder-3.6 .0-jar-with-dependencies.jar ` ] to get PojoBuilder complete with all dependent libraries included.
56
+ you might want to download the [ ` pojobuilder-4.0 .0-jar-with-dependencies.jar ` ] to get PojoBuilder complete with all dependent libraries included.
57
57
58
58
How To Use
59
59
----------
@@ -343,7 +343,7 @@ The `javac` compiler will auto-detect the presence of PojoBuilder if `pojobuilde
343
343
344
344
For example:
345
345
346
- javac -cp pojobuilder-3.6 .0-jar-with-dependencies.jar Contact.java
346
+ javac -cp pojobuilder-4.0 .0-jar-with-dependencies.jar Contact.java
347
347
348
348
will generate a ` ContactBuilder ` if ` Contact ` is annotated with ` @GeneratePojoBuilder ` .
349
349
@@ -356,7 +356,7 @@ Add the following to your project's `pom.xml` to configure the PojoBuilder annot
356
356
<dependency>
357
357
<groupId>net.karneim</groupId>
358
358
<artifactId>pojobuilder</artifactId>
359
- <version>3.6 .0</version>
359
+ <version>4.0 .0</version>
360
360
<!-- 'provided' scope because this is only needed during compilation -->
361
361
<scope>provided</scope>
362
362
</dependency>
@@ -378,7 +378,7 @@ repositories {
378
378
}
379
379
380
380
dependencies {
381
- compile 'net.karneim:pojobuilder:3.6 .0'
381
+ compile 'net.karneim:pojobuilder:4.0 .0'
382
382
}
383
383
```
384
384
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.
@@ -396,7 +396,7 @@ configurations {
396
396
}
397
397
398
398
dependencies {
399
- codeGeneration 'net.karneim:pojobuilder:3.6 .0'
399
+ codeGeneration 'net.karneim:pojobuilder:4.0 .0'
400
400
}
401
401
compileJava.classpath += configurations.codeGeneration
402
402
compileTestJava.classpath += configurations.codeGeneration
@@ -447,7 +447,7 @@ Do the following to enable PojoBuilder for your Eclipse project:
447
447
* Open your project's properties dialog
448
448
* Navigate to "Java Build Path" tree node
449
449
* Open the "Libraries" tab
450
- * Add ` pojobuilder-3.6 .0-annotations.jar ` to your project classpath
450
+ * Add ` pojobuilder-4.0 .0-annotations.jar ` to your project classpath
451
451
* Navigate to "Java Compiler / Annotation Processing" tree node
452
452
* Check "Enable project specific settings"
453
453
* Check "Enable annotation processing"
@@ -456,7 +456,7 @@ Do the following to enable PojoBuilder for your Eclipse project:
456
456
* Navigate to "Java Compiler / Annotation Processing / Factory Path" tree node
457
457
* Check "Enable project specific settings"
458
458
* Click "Add JARs..."
459
- * Add ` pojobuiler-3.6 .0-jar-with-dependencies.jar `
459
+ * Add ` pojobuiler-4.0 .0-jar-with-dependencies.jar `
460
460
* Click "OK"
461
461
462
462
How To Build
@@ -468,7 +468,7 @@ If you want to compile this project's sources yourself you can use Gradle (see [
468
468
[ JavaWriter ] : https://github.com/square/javawriter
469
469
[ Sonatype OSS Maven Repository ] : https://oss.sonatype.org/content/repositories/releases/net/karneim/pojobuilder
470
470
[ Maven Central ] : http://search.maven.org/#search|ga|1|a%3A%22pojobuilder%22
471
- [ `pojobuilder-3.6 .0-jar-with-dependencies.jar` ] : https://oss.sonatype.org/content/repositories/releases/net/karneim/pojobuilder/3.6 .0/pojobuilder-3.6 .0-jar-with-dependencies.jar
471
+ [ `pojobuilder-4.0 .0-jar-with-dependencies.jar` ] : https://oss.sonatype.org/content/repositories/releases/net/karneim/pojobuilder/4.0 .0/pojobuilder-4.0 .0-jar-with-dependencies.jar
472
472
[ javac documentation ] : http://docs.oracle.com/javase/6/docs/technotes/tools/solaris/javac.html#processing
473
473
[ @ConstructorProperties ] : http://docs.oracle.com/javase/6/docs/api/java/beans/ConstructorProperties.html
474
474
0 commit comments