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

Commit

Permalink
Update version in README to 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alicederyn committed Apr 13, 2016
1 parent 34efe9e commit 5a6ba0d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -432,12 +432,12 @@ Build tools and IDEs

### javac

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

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

### Maven
Expand All @@ -449,7 +449,7 @@ Add the `@FreeBuilder` artifact as an optional dependency to your Maven POM:
<dependency>
<groupId>org.inferred</groupId>
<artifactId>freebuilder</artifactId>
<version>1.7</version>
<version>1.7.1</version>
<optional>true</optional>
</dependency>
</dependencies>
Expand All @@ -463,7 +463,7 @@ interoperable implementation code (e.g returning [immutable collections]).
Add the following lines to your dependencies:

```
compile 'org.inferred:freebuilder:1.7'
compile 'org.inferred:freebuilder:1.7.1'
```

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

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

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

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

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

### IntelliJ

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

Download [freebuilder-1.7.jar][], add it to your project, right-click it
Download [freebuilder-1.7.1.jar][], add it to your project, right-click it
and select **Use as Project Library**.

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

0 comments on commit 5a6ba0d

Please sign in to comment.