Skip to content

Commit c1d73b9

Browse files
committed
feat: add integration test for GraalVM support
1 parent 12a5dcc commit c1d73b9

File tree

9 files changed

+746
-511
lines changed

9 files changed

+746
-511
lines changed

pom.xml

+19-2
Original file line numberDiff line numberDiff line change
@@ -254,19 +254,31 @@
254254
java.net.http.*
255255
</ignores>
256256
</configuration>
257-
<executions>
257+
<!--<executions>
258258
<execution>
259259
<id>ensure-java-1.8-class-library</id>
260260
<phase>test</phase>
261261
<goals>
262262
<goal>check</goal>
263263
</goals>
264264
</execution>
265-
</executions>
265+
</executions>-->
266266
</plugin>
267267
</plugins>
268268
</pluginManagement>
269269
<plugins>
270+
<plugin>
271+
<groupId>org.springframework.boot</groupId>
272+
<artifactId>spring-boot-maven-plugin</artifactId>
273+
<executions>
274+
<execution>
275+
<id>process-test-aot</id>
276+
<goals>
277+
<goal>process-test-aot</goal>
278+
</goals>
279+
</execution>
280+
</executions>
281+
</plugin>
270282
<plugin>
271283
<groupId>org.apache.maven.plugins</groupId>
272284
<artifactId>maven-site-plugin</artifactId>
@@ -497,6 +509,11 @@
497509
<version>${hamcrest.version}</version>
498510
<scope>test</scope>
499511
</dependency>
512+
<dependency>
513+
<groupId>org.springframework.boot</groupId>
514+
<artifactId>spring-boot-starter-test</artifactId>
515+
<version>3.3.3</version>
516+
</dependency>
500517
<!-- This is needed in order to force junit4 and JTH tests to use newer hamcrest version -->
501518
<dependency>
502519
<groupId>org.hamcrest</groupId>

0 commit comments

Comments
 (0)