Skip to content

Commit

Permalink
PR1398 HLF Quest restore pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
Innoxia committed Apr 1, 2021
1 parent c96362f commit fff6403
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.lilithsthrone</groupId>
<artifactId>game</artifactId>
<packaging>jar</packaging>
<version>1</version>
<name>lilithsthrone</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<directory>src/com/lilithsthrone/res</directory>
<targetPath>com/lilithsthrone/res</targetPath>
</resource>
<resource>
<directory>res</directory>
<targetPath>${project.build.directory}/res</targetPath>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<archive>
<manifest>
<mainClass>com.lilithsthrone.main.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<useIncrementalCompilation>false</useIncrementalCompilation>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit fff6403

Please sign in to comment.