Files
gemp-lotr/gemp-lotr/pom.xml
2019-10-08 07:24:24 -07:00

56 lines
1.9 KiB
XML

<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.gempukku.lotro</groupId>
<artifactId>gemp-lotr</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>gemp-lotr</name>
<url>http://maven.apache.org</url>
<modules>
<module>gemp-lotr-server</module>
<module>gemp-lotr-logic</module>
<module>gemp-lotr-common</module>
<module>gemp-lotr-cards</module>
<module>gemp-lotr-async</module>
<module>gemp-lotr-images</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>maven2-repository.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
<layout>default</layout>
</repository>
<repository>
<id>maven-repository.java.net</id>
<name>Java.net Maven 1 Repository (legacy)</name>
<url>http://download.java.net/maven/1</url>
<layout>legacy</layout>
</repository>
</repositories>
</project>