File tree Expand file tree Collapse file tree 1 file changed +0
-42
lines changed Expand file tree Collapse file tree 1 file changed +0
-42
lines changed Original file line number Diff line number Diff line change 13511351 </build >
13521352 </profile >
13531353
1354- <!--
1355- The dist profile augments the package phase to produce self-contained
1356- Java application bundles, using the standard Java packaging mechanism.
1357- Exactly which bundles are produced depends on the underlying platform
1358- configuration. But this configuration will always produce two sets of
1359- bundles: one with JRE included (in target/jfx/native) and
1360- another without a bundled JRE (in target/jfx/native-nojre).
1361- -->
1362- <profile >
1363- <id >dist</id >
1364- <build >
1365- <plugins >
1366- <plugin >
1367- <groupId >com.zenjava</groupId >
1368- <artifactId >javafx-maven-plugin</artifactId >
1369- <executions >
1370- <execution >
1371- <id >dist-with-jre</id >
1372- <phase >package</phase >
1373- <goals >
1374- <goal >native</goal >
1375- </goals >
1376- </execution >
1377- <execution >
1378- <id >dist-no-jre</id >
1379- <phase >package</phase >
1380- <goals >
1381- <goal >native</goal >
1382- </goals >
1383- <configuration >
1384- <bundleArguments >
1385- <runtime />
1386- </bundleArguments >
1387- <nativeOutputDir >${project.build.directory} /jfx/native-nojre</nativeOutputDir >
1388- </configuration >
1389- </execution >
1390- </executions >
1391- </plugin >
1392- </plugins >
1393- </build >
1394- </profile >
1395-
13961354 <!--
13971355 The uberjar profile augments the package phase to build an unshaded uber-JAR
13981356 or "fat JAR" using the maven-shade-plugin. The default classifier is "all";
You can’t perform that action at this time.
0 commit comments