The tournament and league tests now all fail, due to poorly designed mock tests for tournaments. That will require a rewrite of the base classes to take a more IOC approach.
51 lines
1.6 KiB
XML
51 lines
1.6 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>17</java.version>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.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>
|
|
|
|
</repositories>
|
|
</project>
|