EpicEnchants/pom.xml

41 lines
1.3 KiB
XML
Raw Normal View History

2019-01-16 13:01:24 +01:00
<?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>com.songoda</groupId>
2019-01-17 00:16:30 +01:00
<artifactId>EpicEnchants-Parent</artifactId>
2019-01-16 13:01:24 +01:00
<packaging>pom</packaging>
2019-04-24 11:40:40 +02:00
<version>1.0.8-ALPHA</version>
2019-01-16 13:01:24 +01:00
<modules>
<module>core</module>
</modules>
<repositories>
<repository>
<id>private</id>
<url>http://repo.songoda.com/repository/private/</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
2019-01-17 00:16:30 +01:00
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
2019-01-16 13:01:24 +01:00
</build>
</project>