Skip to content

Commit 7eadbc8

Browse files
committed
Remove AutoValue from the runtime dependencies.
See https://github.com/google/auto/blob/master/value/userguide/index.md#with-maven for more info
1 parent e1195ac commit 7eadbc8

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

pom.xml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,7 @@
110110
<groupId>com.google.auto.value</groupId>
111111
<artifactId>auto-value-annotations</artifactId>
112112
<version>1.7.4</version>
113-
</dependency>
114-
<dependency>
115-
<groupId>com.google.auto.value</groupId>
116-
<artifactId>auto-value</artifactId>
117-
<version>1.7.4</version>
113+
<scope>provided</scope>
118114
</dependency>
119115
<dependency>
120116
<groupId>com.google.code.findbugs</groupId>
@@ -170,7 +166,14 @@
170166
<target>1.8</target>
171167
<testSource>1.8</testSource>
172168
<testTarget>1.8</testTarget>
173-
<parameters>true</parameters>
169+
<parameters>true</parameters>
170+
<annotationProcessorPaths>
171+
<path>
172+
<groupId>com.google.auto.value</groupId>
173+
<artifactId>auto-value</artifactId>
174+
<version>1.7.4</version>
175+
</path>
176+
</annotationProcessorPaths>
174177
</configuration>
175178
</plugin>
176179
<plugin>

0 commit comments

Comments
 (0)