2010-12-02 09:14:18 +00:00
|
|
|
|
2010-10-22 07:03:17 +00:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2012-07-19 18:15:09 +00:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2010-10-22 10:44:30 +00:00
|
|
|
|
2010-12-02 09:14:18 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.mage</groupId>
|
|
|
|
<artifactId>mage-root</artifactId>
|
2012-07-18 11:59:07 +00:00
|
|
|
<version>0.9.0</version>
|
2010-12-02 09:14:18 +00:00
|
|
|
</parent>
|
|
|
|
|
2011-10-28 11:42:54 +00:00
|
|
|
<artifactId>mage</artifactId>
|
2010-12-02 09:14:18 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Mage Framework</name>
|
|
|
|
|
2011-05-05 03:18:13 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>1.2.14</version>
|
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
|
|
|
</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>
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
|
|
<finalName>mage</finalName>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties/>
|
2012-06-19 20:50:20 +00:00
|
|
|
|
2010-10-22 07:03:17 +00:00
|
|
|
</project>
|