|
|
|
@ -56,6 +56,7 @@
|
|
|
|
|
<module>integrated-example/integrated-frontend</module>
|
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
@ -66,8 +67,66 @@
|
|
|
|
|
<skip>true</skip>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.graalvm.buildtools</groupId>
|
|
|
|
|
<artifactId>native-maven-plugin</artifactId>
|
|
|
|
|
<version>${native-maven-plugin.version}</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>native</id>
|
|
|
|
|
<build>
|
|
|
|
|
<pluginManagement>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<jvmArguments>
|
|
|
|
|
-agentlib:native-image-agent=config-merge-dir=src/main/resources/META-INF/native-image/
|
|
|
|
|
</jvmArguments>
|
|
|
|
|
<image>
|
|
|
|
|
<builder>paketobuildpacks/builder:tiny</builder>
|
|
|
|
|
<env>
|
|
|
|
|
<BP_NATIVE_IMAGE>true</BP_NATIVE_IMAGE>
|
|
|
|
|
</env>
|
|
|
|
|
</image>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>process-aot</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>process-aot</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.graalvm.buildtools</groupId>
|
|
|
|
|
<artifactId>native-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<classesDirectory>${project.build.outputDirectory}</classesDirectory>
|
|
|
|
|
<metadataRepository>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</metadataRepository>
|
|
|
|
|
<requiredVersion>22.3</requiredVersion>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>add-reachability-metadata</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>add-reachability-metadata</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</pluginManagement>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
|
|
</project>
|
|
|
|
|