You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.2 KiB
89 lines
2.2 KiB
<project xmlns="http://maven.apache.org/POM/4.0.0" |
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<version>0.0.1</version> |
|
<name>Stoppuhr</name> |
|
|
|
<dependencies> |
|
|
|
<dependency> |
|
<groupId>org.openjfx</groupId> |
|
<artifactId>javafx-controls</artifactId> |
|
<version>11</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.openjfx</groupId> |
|
<artifactId>javafx-fxml</artifactId> |
|
<version>11</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.jfoenix</groupId> |
|
<artifactId>jfoenix</artifactId> |
|
<version>9.0.8</version> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
|
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.8.0</version> |
|
<configuration> |
|
<source>11</source> |
|
<target>11</target> |
|
<!--<release>11</release> --> |
|
<showWarnings>true</showWarnings> |
|
<showDeprecation>true</showDeprecation> |
|
</configuration> |
|
</plugin> |
|
|
|
<plugin> |
|
<groupId>org.codehaus.mojo</groupId> |
|
<artifactId>exec-maven-plugin</artifactId> |
|
<version>1.6.0</version> |
|
<executions> |
|
<execution> |
|
<goals> |
|
<goal>java</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
<configuration> |
|
<mainClass>main.java.com.Stoppuhr.application.Main</mainClass> |
|
</configuration> |
|
</plugin> |
|
|
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-shade-plugin</artifactId> |
|
<version>3.2.1</version> |
|
<configuration> |
|
<finalName>Stoppuhr</finalName> |
|
<shadedArtifactAttached>true</shadedArtifactAttached> |
|
<transformers> |
|
<transformer |
|
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
|
<mainClass>com.Stoppuhr.application.JavaFX11Main</mainClass> |
|
</transformer> |
|
</transformers> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>shade</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
<artifactId>Stoppuhr</artifactId> |
|
<groupId>application</groupId> |
|
</project>
|
|
|