Updates pom

This commit is contained in:
Kristian Knarvik 2020-02-11 11:27:35 +01:00
parent e6b70c2f42
commit 6f347b863c
3 changed files with 24 additions and 0 deletions

3
.gitignore vendored
View File

@ -26,3 +26,6 @@ hs_err_pid*
/build/
/dist/
.idea
/.idea/
out
target

3
manifest.mf Normal file
View File

@ -0,0 +1,3 @@
Manifest-Version: 1.0
X-COMMENT: Main-Class will be added automatically by build

18
pom.xml Normal file
View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>net.knarcraft.ffmpegconvert</groupId>
<artifactId>ffmpegconvert</artifactId>
<version>0.1-alpha</version>
<name>FFMpeg Convert</name>
<url>https://git.knarcraft.net/KnarCraft/FFmpegConvert</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
</project>