Skip to content

Commit 68ab037

Browse files
committed
Update readme
1 parent 2a36385 commit 68ab037

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ For older versions and a *change log* please see the [release history page].
5353
PojoBuilder *binaries* are available for download at [Sonatype OSS Maven Repository] and [Maven Central].
5454

5555
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.
5757

5858
How To Use
5959
----------
@@ -343,7 +343,7 @@ The `javac` compiler will auto-detect the presence of PojoBuilder if `pojobuilde
343343

344344
For example:
345345

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
347347

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

@@ -356,7 +356,7 @@ Add the following to your project's `pom.xml` to configure the PojoBuilder annot
356356
<dependency>
357357
<groupId>net.karneim</groupId>
358358
<artifactId>pojobuilder</artifactId>
359-
<version>3.6.0</version>
359+
<version>4.0.0</version>
360360
<!-- 'provided' scope because this is only needed during compilation -->
361361
<scope>provided</scope>
362362
</dependency>
@@ -378,7 +378,7 @@ repositories {
378378
}
379379
380380
dependencies {
381-
compile 'net.karneim:pojobuilder:3.6.0'
381+
compile 'net.karneim:pojobuilder:4.0.0'
382382
}
383383
```
384384
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 {
396396
}
397397
398398
dependencies {
399-
codeGeneration 'net.karneim:pojobuilder:3.6.0'
399+
codeGeneration 'net.karneim:pojobuilder:4.0.0'
400400
}
401401
compileJava.classpath += configurations.codeGeneration
402402
compileTestJava.classpath += configurations.codeGeneration
@@ -447,7 +447,7 @@ Do the following to enable PojoBuilder for your Eclipse project:
447447
* Open your project's properties dialog
448448
* Navigate to "Java Build Path" tree node
449449
* 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
451451
* Navigate to "Java Compiler / Annotation Processing" tree node
452452
* Check "Enable project specific settings"
453453
* Check "Enable annotation processing"
@@ -456,7 +456,7 @@ Do the following to enable PojoBuilder for your Eclipse project:
456456
* Navigate to "Java Compiler / Annotation Processing / Factory Path" tree node
457457
* Check "Enable project specific settings"
458458
* Click "Add JARs..."
459-
* Add `pojobuiler-3.6.0-jar-with-dependencies.jar`
459+
* Add `pojobuiler-4.0.0-jar-with-dependencies.jar`
460460
* Click "OK"
461461

462462
How To Build
@@ -468,7 +468,7 @@ If you want to compile this project's sources yourself you can use Gradle (see [
468468
[JavaWriter]: https://github.com/square/javawriter
469469
[Sonatype OSS Maven Repository]: https://oss.sonatype.org/content/repositories/releases/net/karneim/pojobuilder
470470
[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
472472
[javac documentation]: http://docs.oracle.com/javase/6/docs/technotes/tools/solaris/javac.html#processing
473473
[@ConstructorProperties]: http://docs.oracle.com/javase/6/docs/api/java/beans/ConstructorProperties.html
474474

0 commit comments

Comments
 (0)