Skip to content

Commit

Permalink
fix: action 06 image name
Browse files Browse the repository at this point in the history
  • Loading branch information
dudiao committed Nov 21, 2023
1 parent 45d5f24 commit 98236e4
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions app-runner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,26 @@
<groupId>org.noear</groupId>
<artifactId>solon-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.graalvm.buildtools</groupId>
<artifactId>native-maven-plugin</artifactId>
<version>${native.version}</version>
<!-- 使用graalvm提供的可达性元数据,很多第三方库就直接可以构建成可执行文件了 -->
<configuration>
<metadataRepository>
<enabled>true</enabled>
</metadataRepository>
<imageName>app</imageName>
</configuration>
<executions>
<execution>
<id>add-reachability-metadata</id>
<goals>
<goal>add-reachability-metadata</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 98236e4

Please sign in to comment.