72 lines
No EOL
2.2 KiB
XML
72 lines
No EOL
2.2 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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.deepclone.lw</groupId>
|
|
<artifactId>legacyworlds</artifactId>
|
|
<version>5.99.1</version>
|
|
<packaging>pom</packaging>
|
|
<name>Legacy Worlds</name>
|
|
<description>Main Maven project for LW</description>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.2</version>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
<id>com.springsource.repository.bundles.release</id>
|
|
<name>Spring framework</name>
|
|
<url>http://repository.springsource.com/maven/bundles/release</url>
|
|
</repository>
|
|
<repository>
|
|
<id>com.springsource.repository.bundles.external</id>
|
|
<name>Spring framework - external</name>
|
|
<url>http://repository.springsource.com/maven/bundles/external</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>jboss</id>
|
|
<url>http://repository.jboss.com/maven2</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<org.springframework.version>3.0.3.RELEASE</org.springframework.version>
|
|
<log4j.version>1.2.16</log4j.version>
|
|
<org.slf4j.version>1.5.11</org.slf4j.version>
|
|
<commons.dbcp.version>1.2.2</commons.dbcp.version>
|
|
<commons.codec.version>1.4</commons.codec.version>
|
|
<cglib.version>2.2</cglib.version>
|
|
<javax.mail.version>1.4.1</javax.mail.version>
|
|
<com.thoughtworks.xstream.version>1.3.1</com.thoughtworks.xstream.version>
|
|
<junit.version>4.7</junit.version>
|
|
<org.freemarker.version>2.3.16</org.freemarker.version>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>legacyworlds-server</module>
|
|
<module>legacyworlds-session</module>
|
|
<module>legacyworlds-web</module>
|
|
<module>legacyworlds-utils</module>
|
|
</modules>
|
|
|
|
</project> |