<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.3.0</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.SP4</version> </dependency> <dependency> <groupId>org.jboss</groupId> <artifactId>jboss-common-core</artifactId> <version>2.2.22.GA</version> </dependency> <dependency> <groupId>jboss</groupId> <artifactId>jboss-serialization</artifactId> <version>1.0.3.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> </dependencies> <build> <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> </plugins> <finalName>mage-common</finalName> </build> </project>