Skip to content

Commit ebdd232

Browse files
matthew29tangcopybara-github
authored andcommitted
fix: Fix pom file build for Java 25
PiperOrigin-RevId: 888902321
1 parent 1add575 commit ebdd232

2 files changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/unit-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ jobs:
3131
-Djacoco.skip=true
3232
-Dcheckstyle.skip=true
3333
-Dclirr.skip=true
34+
-Dsurefire.failIfNoSpecifiedTests=false

google-cloud-vertexai/pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,4 +176,22 @@
176176
<scope>test</scope>
177177
</dependency>
178178
</dependencies>
179+
<build>
180+
<plugins>
181+
<plugin>
182+
<groupId>org.apache.maven.plugins</groupId>
183+
<artifactId>maven-compiler-plugin</artifactId>
184+
<version>3.13.0</version>
185+
<configuration>
186+
<annotationProcessorPaths>
187+
<path>
188+
<groupId>com.google.auto.value</groupId>
189+
<artifactId>auto-value</artifactId>
190+
<version>1.11.0</version>
191+
</path>
192+
</annotationProcessorPaths>
193+
</configuration>
194+
</plugin>
195+
</plugins>
196+
</build>
179197
</project>

0 commit comments

Comments
 (0)