Skip to content

Commit

Permalink
Merge pull request quarkusio#39530 from gsmet/fix-profile-native-section
Browse files Browse the repository at this point in the history
Update profile section in building-native-image.adoc
  • Loading branch information
gastaldi authored Mar 18, 2024
2 parents 71c8263 + 0eed615 commit b5a3d27
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/src/main/asciidoc/building-native-image.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -170,14 +170,20 @@ The native executable for our application will contain the application code, req

image:native-executable-process.png[Creating a native executable]

If you have generated the application from the previous tutorial, you can find in the `pom.xml` the following _profile_:
If you have generated the application from the previous tutorial, you can find in the `pom.xml` the following Maven profile section:

[source,xml]
----
<profiles>
<profile>
<id>native</id>
<activation>
<property>
<name>native</name>
</property>
</activation>
<properties>
<skipITs>false</skipITs>
<quarkus.package.type>native</quarkus.package.type>
</properties>
</profile>
Expand Down

0 comments on commit b5a3d27

Please sign in to comment.