Skip to content

Commit 2b88377

Browse files
eamonnmcmanusronshapiro
authored andcommitted
Revert changes to AutoValue documentation that talk about 1.6, until we can actually release 1.6.
*** ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=189351166
1 parent 04d00ca commit 2b88377

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

value/userguide/index.md

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -74,31 +74,21 @@ examples short and simple.
7474
Maven users should add the following to the project's `pom.xml` file:
7575

7676
```xml
77-
<dependency>
78-
<groupId>com.google.auto.value</groupId>
79-
<artifactId>auto-value-annotations</artifactId>
80-
<version>1.6</version>
81-
</dependency>
8277
<dependency>
8378
<groupId>com.google.auto.value</groupId>
8479
<artifactId>auto-value</artifactId>
85-
<version>1.6</version>
80+
<version>1.5.4</version>
8681
<scope>provided</scope>
8782
</dependency>
8883
```
8984

90-
Alternatively, instead of using the `provided` scope, you can add the second
91-
dependency to the
92-
[`annotationProcessorPaths`](https://maven.apache.org/plugins/maven-compiler-plugin/compile-mojo.html#annotationProcessorPaths)
93-
section.
94-
9585
Gradle users should install the annotation processing plugin [as described in
9686
these instructions][tbroyer-apt] and then use it in the `build.gradle` script:
9787

9888
```groovy
9989
dependencies {
100-
compileOnly "com.google.auto.value:auto-value-annotations:1.6"
101-
apt "com.google.auto.value:auto-value:1.6"
90+
compileOnly "com.google.auto.value:auto-value:1.5.4"
91+
apt "com.google.auto.value:auto-value:1.5.4"
10292
}
10393
```
10494

0 commit comments

Comments
 (0)