File tree Expand file tree Collapse file tree 1 file changed +3
-13
lines changed Expand file tree Collapse file tree 1 file changed +3
-13
lines changed Original file line number Diff line number Diff line change @@ -74,31 +74,21 @@ examples short and simple.
74
74
Maven users should add the following to the project's ` pom.xml ` file:
75
75
76
76
``` xml
77
- <dependency >
78
- <groupId >com.google.auto.value</groupId >
79
- <artifactId >auto-value-annotations</artifactId >
80
- <version >1.6</version >
81
- </dependency >
82
77
<dependency >
83
78
<groupId >com.google.auto.value</groupId >
84
79
<artifactId >auto-value</artifactId >
85
- <version >1.6 </version >
80
+ <version >1.5.4 </version >
86
81
<scope >provided</scope >
87
82
</dependency >
88
83
```
89
84
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
-
95
85
Gradle users should install the annotation processing plugin [ as described in
96
86
these instructions] [ tbroyer-apt ] and then use it in the ` build.gradle ` script:
97
87
98
88
``` groovy
99
89
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 "
102
92
}
103
93
```
104
94
You can’t perform that action at this time.
0 commit comments