A Program to manage your locally saved movies.
https://www.mosad.xyz
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.
103 lines
3.0 KiB
103 lines
3.0 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> |
|
|
|
<groupId>org.kellerkinder</groupId> |
|
<artifactId>Project-HomeFlix</artifactId> |
|
<version>0.6.99</version> |
|
<packaging>jar</packaging> |
|
|
|
<name>Project-HomeFlix</name> |
|
<url>http://www.kellerkinder.xyz</url> |
|
|
|
<properties> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
</properties> |
|
|
|
<dependencies> |
|
|
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<version>4.12</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>commons-io</groupId> |
|
<artifactId>commons-io</artifactId> |
|
<version>2.6</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.jfoenix</groupId> |
|
<artifactId>jfoenix</artifactId> |
|
<version>9.0.3</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.eclipsesource.minimal-json</groupId> |
|
<artifactId>minimal-json</artifactId> |
|
<version>0.9.5</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.xerial</groupId> |
|
<artifactId>sqlite-jdbc</artifactId> |
|
<version>3.21.0.1</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.apache.logging.log4j</groupId> |
|
<artifactId>log4j-api</artifactId> |
|
<version>2.11.0</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.apache.logging.log4j</groupId> |
|
<artifactId>log4j-core</artifactId> |
|
<version>2.11.0</version> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
|
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.7.0</version> |
|
<configuration> |
|
<source>9</source> |
|
<target>9</target> |
|
<showWarnings>true</showWarnings> |
|
<showDeprecation>true</showDeprecation> |
|
</configuration> |
|
</plugin> |
|
|
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-shade-plugin</artifactId> |
|
<version>3.1.1</version> |
|
<configuration> |
|
<shadedArtifactAttached>true</shadedArtifactAttached> |
|
<transformers> |
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
|
<mainClass>kellerkinder.HomeFlix.application.Main</mainClass> |
|
</transformer> |
|
</transformers> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>shade</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
|
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|