<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>spring-boot-3-native</artifactId> <version>0.0.1-SNAPSHOT</version> <name>spring-boot-3-native</name> <description>Demo project for Spring Boot</description> <parent> <groupId>com.baeldung</groupId> <artifactId>parent-boot-3</artifactId> <version>0.0.1-SNAPSHOT</version> <relativePath>../../parent-boot-3</relativePath> </parent> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springdoc</groupId> <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> <version>${springdoc.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-graphql</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.graalvm.buildtools</groupId> <artifactId>native-maven-plugin</artifactId> <configuration> <!-- Mockito is not supported --> <skipNativeTests>true</skipNativeTests> </configuration> </plugin> <!-- We can compile the application in AOT mode but not producing a native image --> <!-- If we active this plugin --> <!-- and deactive all the pom native component --> <!-- <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <jvmArguments> -agentlib:native-image-agent=config-output-dir=target/native-image </jvmArguments> </configuration> <executions> <execution> <id>process-aot</id> <goals> <goal>process-aot</goal> </goals> </execution> </executions> </plugin> --> </plugins> </pluginManagement> </build> <profiles> <!-- The native profile is already defined by the parent POM. --> <!-- To use this plugin, we need GraalVM (located under $GRAALVM_HOME) and --> <!-- native-builder (located in the $PATH) --> <profile> <id>native</id> <build> <plugins> <plugin> <groupId>org.graalvm.buildtools</groupId> <artifactId>native-maven-plugin</artifactId> <executions> <execution> <id>build-native</id> <goals> <goal>compile-no-fork</goal> </goals> <phase>package</phase> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <properties> <springdoc.version>2.0.0</springdoc.version> <maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version> <native.maven.plugin.version>0.9.17</native.maven.plugin.version> </properties> </project>