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"
|
2010-10-22 11:54:23 +00:00
|
|
|
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>
|
2011-04-02 01:05:43 +00:00
|
|
|
<version>0.7</version>
|
2010-10-22 11:54:23 +00:00
|
|
|
</parent>
|
|
|
|
|
2010-10-22 07:03:17 +00:00
|
|
|
<groupId>org.mage</groupId>
|
2010-10-28 09:16:36 +00:00
|
|
|
<artifactId>Mage-Client</artifactId>
|
2010-12-02 09:14:18 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Mage Client</name>
|
2010-10-22 11:54:23 +00:00
|
|
|
|
2010-11-02 09:19:45 +00:00
|
|
|
<dependencies>
|
2010-10-22 07:03:17 +00:00
|
|
|
<dependency>
|
2010-10-22 11:54:23 +00:00
|
|
|
<groupId>org.mage</groupId>
|
2010-10-28 09:16:36 +00:00
|
|
|
<artifactId>Mage</artifactId>
|
2010-12-02 09:14:18 +00:00
|
|
|
<version>${project.version}</version>
|
2010-10-22 07:03:17 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2010-10-22 11:54:23 +00:00
|
|
|
<groupId>org.mage</groupId>
|
2010-10-28 09:16:36 +00:00
|
|
|
<artifactId>Mage-Common</artifactId>
|
2010-12-02 09:14:18 +00:00
|
|
|
<version>${project.version}</version>
|
2010-10-22 07:03:17 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2010-10-22 11:54:23 +00:00
|
|
|
<groupId>org.mage</groupId>
|
2010-10-28 09:16:36 +00:00
|
|
|
<artifactId>Mage-Sets</artifactId>
|
2010-12-02 09:14:18 +00:00
|
|
|
<version>${project.version}</version>
|
2010-10-22 07:03:17 +00:00
|
|
|
</dependency>
|
2010-10-31 12:44:34 +00:00
|
|
|
<dependency>
|
2010-11-02 09:19:45 +00:00
|
|
|
<groupId>com.googlecode.jspf</groupId>
|
2010-10-31 12:44:34 +00:00
|
|
|
<artifactId>jspf-core</artifactId>
|
2010-11-02 09:19:45 +00:00
|
|
|
<version>0.9.1</version>
|
2010-10-31 12:44:34 +00:00
|
|
|
</dependency>
|
2010-11-05 14:20:29 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>1.2.9</version>
|
|
|
|
</dependency>
|
2010-11-05 15:53:24 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.mortennobel</groupId>
|
|
|
|
<artifactId>java-image-scaling</artifactId>
|
|
|
|
<version>0.8.4</version>
|
|
|
|
</dependency>
|
2010-11-06 21:23:21 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.collections</groupId>
|
|
|
|
<artifactId>google-collections</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
2010-11-19 15:10:04 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.swinglabs</groupId>
|
|
|
|
<artifactId>swingx</artifactId>
|
|
|
|
<version>1.6.1</version>
|
|
|
|
</dependency>
|
2010-11-24 08:20:46 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetlang</groupId>
|
|
|
|
<artifactId>jetlang</artifactId>
|
|
|
|
<version>0.2.4</version>
|
|
|
|
</dependency>
|
2010-12-12 14:02:24 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.jgoodies</groupId>
|
|
|
|
<artifactId>forms</artifactId>
|
|
|
|
<version>1.2.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.intellij</groupId>
|
|
|
|
<artifactId>forms_rt</artifactId>
|
|
|
|
<version>7.0.3</version>
|
|
|
|
</dependency>
|
2010-11-30 16:16:54 +00:00
|
|
|
<!--
|
2010-11-28 10:13:54 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.8.2</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2010-11-30 16:16:54 +00:00
|
|
|
-->
|
2010-12-02 20:25:37 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>Mage-Theme-Plugin</artifactId>
|
2011-01-31 15:37:30 +00:00
|
|
|
<version>0.4</version>
|
2010-12-02 20:25:37 +00:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>Mage-Card-Plugin</artifactId>
|
2011-01-31 15:37:30 +00:00
|
|
|
<version>0.5</version>
|
2010-12-02 20:25:37 +00:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>Mage-Counter-Plugin</artifactId>
|
2010-12-02 20:30:37 +00:00
|
|
|
<version>0.1</version>
|
2010-12-02 20:25:37 +00:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2010-10-22 07:03:17 +00:00
|
|
|
</dependencies>
|
2010-10-22 11:54:23 +00:00
|
|
|
|
2010-10-22 07:03:17 +00:00
|
|
|
<build>
|
2010-10-22 11:54:23 +00:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2010-10-31 12:44:34 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<version>2.3.1</version>
|
|
|
|
</plugin>
|
2010-10-22 07:03:17 +00:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2010-10-31 12:44:34 +00:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<addClasspath>true</addClasspath>
|
|
|
|
<classpathPrefix>lib/</classpathPrefix>
|
|
|
|
<mainClass>mage.client.MageFrame</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
2010-12-02 09:14:18 +00:00
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
2010-10-31 12:44:34 +00:00
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/main/assembly/distribution.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2010-10-22 11:54:23 +00:00
|
|
|
</plugins>
|
|
|
|
|
2010-10-22 07:03:17 +00:00
|
|
|
<finalName>mage-client</finalName>
|
2010-11-02 09:19:45 +00:00
|
|
|
</build>
|
2010-10-22 07:03:17 +00:00
|
|
|
</project>
|