mirror of
https://github.com/correl/mage.git
synced 2024-11-14 11:09:31 +00:00
98 lines
3.1 KiB
XML
98 lines
3.1 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>1.4.50</version>
|
|
</parent>
|
|
|
|
<artifactId>mage-common</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Mage Common Classes</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>mage</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.googlecode.jspf</groupId>
|
|
<artifactId>jspf-core</artifactId>
|
|
<version>0.9.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jboss.remoting</groupId>
|
|
<artifactId>jboss-remoting</artifactId>
|
|
<version>2.5.4.SP5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jboss</groupId>
|
|
<artifactId>jboss-common-core</artifactId>
|
|
<version>2.5.0.Final</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jboss</groupId>
|
|
<artifactId>jboss-serialization</artifactId>
|
|
<version>4.2.2.GA</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>concurrent</groupId>
|
|
<artifactId>concurrent</artifactId>
|
|
<version>1.3.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>trove</groupId>
|
|
<artifactId>trove</artifactId>
|
|
<version>1.0.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<!-- to get the reference to local repository with com\googlecode\jspf\jspf-core\0.9.1\ -->
|
|
<repositories>
|
|
<repository>
|
|
<id>local-project-repo</id>
|
|
<url>file://${project.basedir}/../repository</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<build>
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<finalName>mage-common</finalName>
|
|
</build>
|
|
</project>
|