Skip to content

Commit

Permalink
java: fix test auto-value dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizux committed Nov 29, 2024
1 parent c284aa4 commit 650e072
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion ortools/java/pom-test.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
</dependency>
<dependency>
<groupId>com.google.auto.value</groupId>
<artifactId>auto-value</artifactId>
<artifactId>auto-value-annotations</artifactId>
<version>1.11.0</version>
<scope>provided</scope>
</dependency>
Expand Down Expand Up @@ -121,6 +121,20 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>com.google.auto.value</groupId>
<artifactId>auto-value</artifactId>
<version>1.11.0</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down

0 comments on commit 650e072

Please sign in to comment.