Skip to content
This repository was archived by the owner on Oct 16, 2024. It is now read-only.

Commit 62d50bc

Browse files
committed
Update version in README to 1.10
1 parent 6dc73fb commit 62d50bc

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -487,12 +487,12 @@ Build tools and IDEs
487487

488488
### javac
489489

490-
Download [freebuilder-1.9.jar][] and add it to the classpath (or
490+
Download [freebuilder-1.10.jar][] and add it to the classpath (or
491491
processorpath, if you supply one) on the command line. If [Guava] is
492492
available, FreeBuilder will use it to generate cleaner, more
493493
interoperable implementation code (e.g returning [immutable collections]).
494494

495-
[freebuilder-1.9.jar]: http://repo1.maven.org/maven2/org/inferred/freebuilder/1.9/freebuilder-1.9.jar
495+
[freebuilder-1.10.jar]: http://repo1.maven.org/maven2/org/inferred/freebuilder/1.10/freebuilder-1.10.jar
496496
[immutable collections]: https://github.com/google/guava/wiki/ImmutableCollectionsExplained
497497

498498
### Maven
@@ -504,7 +504,7 @@ Add the `@FreeBuilder` artifact as an optional dependency to your Maven POM:
504504
<dependency>
505505
<groupId>org.inferred</groupId>
506506
<artifactId>freebuilder</artifactId>
507-
<version>1.9</version>
507+
<version>1.10</version>
508508
<optional>true</optional>
509509
</dependency>
510510
</dependencies>
@@ -518,7 +518,7 @@ interoperable implementation code (e.g returning [immutable collections]).
518518
Add the following lines to your dependencies:
519519

520520
```
521-
compile 'org.inferred:freebuilder:1.9'
521+
compile 'org.inferred:freebuilder:1.10'
522522
```
523523

524524
If [Guava] is available, FreeBuilder will use it to generate cleaner, more
@@ -528,21 +528,21 @@ interoperable implementation code (e.g returning [immutable collections]).
528528

529529
_Condensed from [Eclipse Indigo's documentation][]._
530530

531-
Download [freebuilder-1.9.jar][] and add it to your project. Select it,
531+
Download [freebuilder-1.10.jar][] and add it to your project. Select it,
532532
right-click and choose **Build path > Add to Build path**.
533533

534534
In your projects properties dialog, go to **Java Compiler > Annotation
535535
Processing** and ensure **Enable annotation processing** is checked.
536536
Next, go to **Java Compiler > Annotation Processing > Factory Path**, select
537-
**Add JARs**, and select `freebuilder-1.9.jar`.
537+
**Add JARs**, and select `freebuilder-1.10.jar`.
538538

539539
[Eclipse Indigo's documentation]: http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.jdt.doc.isv%2Fguide%2Fjdt_apt_getting_started.htm
540540

541541
### IntelliJ
542542

543543
_Condensed from the [IntelliJ 14.0.3 documentation][] and [Auto Issue #106][]._
544544

545-
Download [freebuilder-1.9.jar][], add it to your project, right-click it
545+
Download [freebuilder-1.10.jar][], add it to your project, right-click it
546546
and select **Use as Project Library**.
547547

548548
In your Settings, go to **Build, Execution, Deployment > Compiler > Annotation

0 commit comments

Comments
 (0)