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

Commit 086c67c

Browse files
committed
Update version in README to 1.7
1 parent 1f40f1c commit 086c67c

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
@@ -369,12 +369,12 @@ Build tools and IDEs
369369

370370
### javac
371371

372-
Download [freebuilder-1.6.jar][] and add it to the classpath (or
372+
Download [freebuilder-1.7.jar][] and add it to the classpath (or
373373
processorpath, if you supply one) on the command line. If [Guava] is
374374
available, FreeBuilder will use it to generate cleaner, more
375375
interoperable implementation code (e.g returning [immutable collections]).
376376

377-
[freebuilder-1.6.jar]: http://repo1.maven.org/maven2/org/inferred/freebuilder/1.6/freebuilder-1.6.jar
377+
[freebuilder-1.7.jar]: http://repo1.maven.org/maven2/org/inferred/freebuilder/1.7/freebuilder-1.7.jar
378378
[immutable collections]: https://github.com/google/guava/wiki/ImmutableCollectionsExplained
379379

380380
### Maven
@@ -386,7 +386,7 @@ Add the `@FreeBuilder` artifact as an optional dependency to your Maven POM:
386386
<dependency>
387387
<groupId>org.inferred</groupId>
388388
<artifactId>freebuilder</artifactId>
389-
<version>1.6</version>
389+
<version>1.7</version>
390390
<optional>true</optional>
391391
</dependency>
392392
</dependencies>
@@ -400,7 +400,7 @@ interoperable implementation code (e.g returning [immutable collections]).
400400
Add the following lines to your dependencies:
401401

402402
```
403-
compile 'org.inferred:freebuilder:1.6'
403+
compile 'org.inferred:freebuilder:1.7'
404404
```
405405

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

411411
_Condensed from [Eclipse Indigo's documentation][]._
412412

413-
Download [freebuilder-1.6.jar][] and add it to your project. Select it,
413+
Download [freebuilder-1.7.jar][] and add it to your project. Select it,
414414
right-click and choose **Build path > Add to Build path**.
415415

416416
In your projects properties dialog, go to **Java Compiler > Annotation
417417
Processing** and ensure **Enable annotation processing** is checked.
418418
Next, go to **Java Compiler > Annotation Processing > Factory Path**, select
419-
**Add JARs**, and select `freebuilder-1.6.jar`.
419+
**Add JARs**, and select `freebuilder-1.7.jar`.
420420

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

423423
### IntelliJ
424424

425425
_Condensed from the [IntelliJ 14.0.3 documentation][] and [Auto Issue #106][]._
426426

427-
Download [freebuilder-1.6.jar][], add it to your project, right-click it
427+
Download [freebuilder-1.7.jar][], add it to your project, right-click it
428428
and select **Use as Project Library**.
429429

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

0 commit comments

Comments
 (0)