Skip to content

Commit e5ed330

Browse files
authored
fix: upgrade native image plugin to 0.9.14 to unblock graalvm 22.2 update (#998)
1 parent 272ceaf commit e5ed330

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.kokoro/build.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,13 @@ integration)
7070
RETURN_CODE=$?
7171
;;
7272
graalvm)
73-
# Run Unit and Integration Tests with Native Image. Use native-maven-plugin until https://github.com/graalvm/native-build-tools/issues/279 is fixed.
74-
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative-0.9.11 -Penable-integration-tests test "-Dtest=com.google.cloud.spanner.jdbc.it.**"
73+
# Run Unit and Integration Tests with Native Image.
74+
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative-0.9.14 -Penable-integration-tests test "-Dtest=com.google.cloud.spanner.jdbc.it.**"
7575
RETURN_CODE=$?
7676
;;
7777
graalvm17)
78-
# Run Unit and Integration Tests with Native Image. Use native-maven-plugin 0.9.11 until https://github.com/graalvm/native-build-tools/issues/279 is fixed.
79-
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative-0.9.11 -Penable-integration-tests test "-Dtest=com.google.cloud.spanner.jdbc.it.**"
78+
# Run Unit and Integration Tests with Native Image.
79+
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative-0.9.14 -Penable-integration-tests test "-Dtest=com.google.cloud.spanner.jdbc.it.**"
8080
RETURN_CODE=$?
8181
;;
8282
samples)

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@
351351

352352
<profiles>
353353
<profile>
354-
<id>native-0.9.11</id>
354+
<id>native-0.9.14</id>
355355

356356
<dependencies>
357357

@@ -391,7 +391,7 @@
391391
<plugin>
392392
<groupId>org.graalvm.buildtools</groupId>
393393
<artifactId>native-maven-plugin</artifactId>
394-
<version>0.9.11</version>
394+
<version>0.9.14</version>
395395
<extensions>true</extensions>
396396
<executions>
397397
<execution>

0 commit comments

Comments
 (0)