mage/Mage.Common/pom.xml

85 lines
2.6 KiB
XML
Raw Normal View History

2010-12-02 09:14:18 +00:00
<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">
2010-12-02 09:14:18 +00:00
<modelVersion>4.0.0</modelVersion>
2010-12-02 09:14:18 +00:00
<parent>
<groupId>org.mage</groupId>
<artifactId>mage-root</artifactId>
2013-04-01 12:00:30 +00:00
<version>1.0.2</version>
2010-12-02 09:14:18 +00:00
</parent>
2011-10-28 11:42:54 +00:00
<artifactId>mage-common</artifactId>
2010-12-02 09:14:18 +00:00
<packaging>jar</packaging>
<name>Mage Common Classes</name>
2010-12-02 09:14:18 +00:00
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
2011-10-28 11:42:54 +00:00
<artifactId>mage</artifactId>
2010-12-02 09:14:18 +00:00
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.googlecode.jspf</groupId>
<artifactId>jspf-core</artifactId>
2012-09-04 11:06:15 +00:00
<version>0.9.1</version>
2011-06-23 02:12:14 +00:00
</dependency>
<dependency>
<groupId>org.jboss.remoting</groupId>
<artifactId>jboss-remoting</artifactId>
<version>2.5.4.SP3</version>
</dependency>
2011-06-23 02:12:14 +00:00
<dependency>
<groupId>org.jboss</groupId>
2011-06-23 02:12:14 +00:00
<artifactId>jboss-common-core</artifactId>
2012-07-19 19:49:13 +00:00
<version>2.2.19.GA</version>
2011-06-23 02:12:14 +00:00
</dependency>
<dependency>
<groupId>jboss</groupId>
<artifactId>jboss-serialization</artifactId>
2011-06-24 02:58:11 +00:00
<version>1.0.3.GA</version>
2011-06-23 02:12:14 +00:00
</dependency>
<dependency>
<groupId>concurrent</groupId>
<artifactId>concurrent</artifactId>
<version>1.3.4</version>
2010-12-02 09:14:18 +00:00
</dependency>
2011-06-24 02:58:11 +00:00
<dependency>
<groupId>trove</groupId>
<artifactId>trove</artifactId>
<version>1.0.2</version>
</dependency>
2012-01-24 22:07:23 +00:00
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.7.2</version>
2012-01-24 22:07:23 +00:00
</dependency>
2010-12-02 09:14:18 +00:00
</dependencies>
2010-12-02 09:14:18 +00:00
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
2010-12-02 09:14:18 +00:00
</plugins>
2010-12-02 09:14:18 +00:00
<finalName>mage-common</finalName>
</build>
</project>