mage/Mage.Common/pom.xml

91 lines
2.7 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>
2012-06-29 10:56:13 +00:00
<version>0.8.7</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>
<version>${jspf-version}</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>jboss</groupId>
<artifactId>jboss-common-core</artifactId>
<version>2.2.16.GA</version>
</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.sqlite</groupId>
<artifactId>sqlite</artifactId>
<version>0.5.6</version>
</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>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.3</version>
<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>
2010-12-02 09:14:18 +00:00
<properties>
<jspf-version>0.9.1</jspf-version>
</properties>
</project>