Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix: move autovalue into annotation processor path instead of classpa…
…th (#358)
  • Loading branch information
elharo authored and chingor13 committed Oct 8, 2019
1 parent f4f05be commit a82d348
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
5 changes: 0 additions & 5 deletions oauth2_http/pom.xml
Expand Up @@ -66,11 +66,6 @@
<groupId>com.google.auto.value</groupId>
<artifactId>auto-value-annotations</artifactId>
</dependency>
<dependency>
<groupId>com.google.auto.value</groupId>
<artifactId>auto-value</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
Expand Down
13 changes: 7 additions & 6 deletions pom.xml
Expand Up @@ -107,12 +107,6 @@
<artifactId>auto-value-annotations</artifactId>
<version>${project.autovalue.version}</version>
</dependency>
<dependency>
<groupId>com.google.auto.value</groupId>
<artifactId>auto-value</artifactId>
<version>${project.autovalue.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
Expand Down Expand Up @@ -225,6 +219,13 @@
<target>1.7</target>
<encoding>UTF-8</encoding>
<compilerArgument>-Xlint:unchecked</compilerArgument>
<annotationProcessorPaths>
<path>
<groupId>com.google.auto.value</groupId>
<artifactId>auto-value</artifactId>
<version>${project.autovalue.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit a82d348

Please sign in to comment.