mirror of
https://github.com/GameRevision/GWLP-R
synced 2026-08-19 00:23:03 -04:00
Bumps [junit](https://github.com/junit-team/junit4) from 4.8.2 to 4.13.1. - [Release notes](https://github.com/junit-team/junit4/releases) - [Changelog](https://github.com/junit-team/junit4/blob/main/doc/ReleaseNotes4.13.1.md) - [Commits](https://github.com/junit-team/junit4/compare/r4.8.2...r4.13.1) Signed-off-by: dependabot[bot] <support@github.com>
73 lines
2.2 KiB
XML
73 lines
2.2 KiB
XML
<?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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.gamerevision.gwlpr</groupId>
|
|
<artifactId>gwlpr</artifactId>
|
|
<version>0.3.3</version>
|
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
<name>${project.artifactId}</name>
|
|
<description>GWLP:R is the most complete GW server sandbox</description>
|
|
<url>http://github.com/GameRevision/GWLP-R</url>
|
|
<inceptionYear>2010</inceptionYear>
|
|
|
|
|
|
<modules>
|
|
<module>database</module>
|
|
<module>protocol</module>
|
|
<module>loginshard</module>
|
|
<module>mapshard</module>
|
|
<module>host</module>
|
|
</modules>
|
|
|
|
|
|
<properties>
|
|
<!-- Java compiler options -->
|
|
<java.source>1.7</java.source>
|
|
<java.target>1.7</java.target>
|
|
<java.debug>true</java.debug>
|
|
<java.optimize>true</java.optimize>
|
|
<java.verbose>true</java.verbose>
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
<!-- The RealityShard Container -->
|
|
<dependency>
|
|
<groupId>com.realityshard</groupId>
|
|
<artifactId>container</artifactId>
|
|
<version>0.3.0</version>
|
|
</dependency>
|
|
|
|
<!-- JUnit for testing -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.13.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<configuration>
|
|
<source>${java.source}</source>
|
|
<target>${java.target}</target>
|
|
<debug>${java.debug}</debug>
|
|
<optimize>${java.optimize}</optimize>
|
|
<verbose>${java.verbose}</verbose>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|