mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
102 lines
2.5 KiB
XML
102 lines
2.5 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>
|
|
|
|
<parent>
|
|
<groupId>org.mage</groupId>
|
|
<artifactId>mage-root</artifactId>
|
|
<version>0.3</version>
|
|
</parent>
|
|
|
|
<groupId>org.mage</groupId>
|
|
<artifactId>Mage-Server</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>0.3</version>
|
|
<name>Mage Server</name>
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.mage</groupId>
|
|
<artifactId>Mage</artifactId>
|
|
<version>${mage-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mage</groupId>
|
|
<artifactId>Mage-Common</artifactId>
|
|
<version>${mage-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mage</groupId>
|
|
<artifactId>Mage-Sets</artifactId>
|
|
<version>${mage-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
<artifactId>jaxb-impl</artifactId>
|
|
<version>2.1.12</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
<version>1.2.14</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>maven2-repository.dev.java.net</id>
|
|
<name>Java.net Maven 2 Repository</name>
|
|
<url>http://download.java.net/maven/2</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<build>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jvnet.jaxb2.maven2</groupId>
|
|
<artifactId>maven-jaxb2-plugin</artifactId>
|
|
<version>0.7.3</version>
|
|
<configuration>
|
|
<generatePackage>mage.server.util.config</generatePackage>
|
|
<schemaDirectory>./xml-resources/jaxb/Config/</schemaDirectory>
|
|
<arguments>-Xcommons-lang</arguments>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>generate</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.0.2</version>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<finalName>mage-server</finalName>
|
|
</build>
|
|
|
|
<properties/>
|
|
|
|
</project>
|