Add jar bundler
This commit is contained in:
parent
d4d6be1930
commit
f0a724888d
43
pom.xml
43
pom.xml
|
@ -102,6 +102,25 @@
|
|||
<type>maven-plugin</type>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.openjfx</groupId>
|
||||
<artifactId>javafx-graphics</artifactId>
|
||||
<version>13</version>
|
||||
<classifier>win</classifier>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.openjfx</groupId>
|
||||
<artifactId>javafx-graphics</artifactId>
|
||||
<version>13</version>
|
||||
<classifier>linux</classifier>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.openjfx</groupId>
|
||||
<artifactId>javafx-graphics</artifactId>
|
||||
<version>13</version>
|
||||
<classifier>mac</classifier>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
|
@ -141,6 +160,7 @@
|
|||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<!-- Plugin to generate code coverage reports -->
|
||||
<plugin>
|
||||
<groupId>org.jacoco</groupId>
|
||||
<artifactId>jacoco-maven-plugin</artifactId>
|
||||
|
@ -162,6 +182,29 @@
|
|||
</executions>
|
||||
</plugin>
|
||||
|
||||
<!-- Plugin to bundle dependencies to generate a jar file -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-shade-plugin</artifactId>
|
||||
<version>3.0.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>shade</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<transformers>
|
||||
<transformer
|
||||
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
||||
<mainClass>app.MainLauncher</mainClass>
|
||||
</transformer>
|
||||
</transformers>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
package app;
|
||||
|
||||
public class MainLauncher {
|
||||
public static void main(String[] args) {
|
||||
Main.main(args);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
@ECHO OFF
|
||||
|
||||
java --enable-preview target/banana-editor-1.0.0.jar
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
java --enable-preview target/banana-editor-1.0.0.jar
|
Loading…
Reference in New Issue