You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Downloads documentation docs artifact, builds all native images, archives native image for each os with documentation pdf file and uploads artifacts to f.e. natives-windows-latest
Copy file name to clipboardExpand all lines: cli/pom.xml
+6-5
Original file line number
Diff line number
Diff line change
@@ -142,7 +142,7 @@
142
142
143
143
144
144
<profiles>
145
-
145
+
<!-- Builds the windows x86_64 native image and archives it with the documentation from the github artifact -->
146
146
<profile>
147
147
<id>windows-latest</id>
148
148
<build>
@@ -207,7 +207,7 @@
207
207
</plugins>
208
208
</build>
209
209
</profile>
210
-
210
+
<!-- Builds the linux x86_64 native image and archives it with the documentation from the github artifact -->
211
211
<profile>
212
212
<id>ubuntu-latest</id>
213
213
<build>
@@ -272,7 +272,7 @@
272
272
</plugins>
273
273
</build>
274
274
</profile>
275
-
275
+
<!-- Builds the osx x86_64 native image and archives it with the documentation from the github artifact -->
276
276
<profile>
277
277
<id>macos-13</id>
278
278
<build>
@@ -337,7 +337,7 @@
337
337
</plugins>
338
338
</build>
339
339
</profile>
340
-
340
+
<!-- Builds the osx aarch_64 native image and archives it with the documentation from the github artifact -->
341
341
<profile>
342
342
<id>macos-latest</id>
343
343
<build>
@@ -403,7 +403,7 @@
403
403
</build>
404
404
</profile>
405
405
406
-
<!-- New profile for including documentation -->
406
+
<!-- Builds the documentation pdf file and stores it in target/package -->
407
407
<profile>
408
408
<id>build-documentation</id>
409
409
<build>
@@ -440,6 +440,7 @@
440
440
</build>
441
441
</profile>
442
442
443
+
<!-- Attaches artifacts stored in cli/target/*.tgz to the maven build, moves them to documentation/target/nexus-staging/.../*.tgz and deploys them with the name defined in the classifier -->
0 commit comments