Skip to content

Commit b5a3d27

Browse files
authored
Merge pull request #39530 from gsmet/fix-profile-native-section
Update profile section in building-native-image.adoc
2 parents 71c8263 + 0eed615 commit b5a3d27

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

docs/src/main/asciidoc/building-native-image.adoc

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,14 +170,20 @@ The native executable for our application will contain the application code, req
170170

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

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

175175
[source,xml]
176176
----
177177
<profiles>
178178
<profile>
179179
<id>native</id>
180+
<activation>
181+
<property>
182+
<name>native</name>
183+
</property>
184+
</activation>
180185
<properties>
186+
<skipITs>false</skipITs>
181187
<quarkus.package.type>native</quarkus.package.type>
182188
</properties>
183189
</profile>

0 commit comments

Comments
 (0)