mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
186 lines
7 KiB
XML
186 lines
7 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>0.7.2</version>
|
|
</parent>
|
|
|
|
<groupId>org.mage</groupId>
|
|
<artifactId>Mage-Client</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Mage Client</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.mage</groupId>
|
|
<artifactId>Mage</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mage</groupId>
|
|
<artifactId>Mage-Common</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mage</groupId>
|
|
<artifactId>Mage-Sets</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.googlecode.jspf</groupId>
|
|
<artifactId>jspf-core</artifactId>
|
|
<version>0.9.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
<version>1.2.9</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mortennobel</groupId>
|
|
<artifactId>java-image-scaling</artifactId>
|
|
<version>0.8.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.collections</groupId>
|
|
<artifactId>google-collections</artifactId>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.swinglabs</groupId>
|
|
<artifactId>swingx</artifactId>
|
|
<version>1.6.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetlang</groupId>
|
|
<artifactId>jetlang</artifactId>
|
|
<version>0.2.4</version>
|
|
</dependency>
|
|
<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>
|
|
<!--
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.8.2</version>
|
|
<type>jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
-->
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>Mage-Theme-Plugin</artifactId>
|
|
<version>0.4</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>Mage-Card-Plugin</artifactId>
|
|
<version>0.5</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>Mage-Counter-Plugin</artifactId>
|
|
<version>0.1</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<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>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
<version>2.3.1</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<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>
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
<descriptors>
|
|
<descriptor>src/main/assembly/distribution.xml</descriptor>
|
|
</descriptors>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.akathist.maven.plugins.launch4j</groupId>
|
|
<artifactId>launch4j-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>l4j-mage-client</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>launch4j</goal>
|
|
</goals>
|
|
<configuration>
|
|
<headerType>console</headerType>
|
|
<outfile>target/mage-client-${project.version}.exe</outfile>
|
|
<jar>target/mage-client.jar</jar>
|
|
<errTitle>Mage Client</errTitle>
|
|
<classPath>
|
|
<mainClass>mage.client.MageFrame</mainClass>
|
|
<addDependencies>true</addDependencies>
|
|
<preCp>anything</preCp>
|
|
</classPath>
|
|
<jre>
|
|
<minVersion>1.5.0</minVersion>
|
|
</jre>
|
|
<versionInfo>
|
|
<fileVersion>0.7.2.0</fileVersion>
|
|
<txtFileVersion>MAGE Client</txtFileVersion>
|
|
<fileDescription>Mage Client</fileDescription>
|
|
<copyright>(C) Mage Development Team</copyright>
|
|
<productVersion>0.7.2.0</productVersion>
|
|
<txtProductVersion>MAGE Client</txtProductVersion>
|
|
<productName>MAGE</productName>
|
|
<internalName>Mage-Client</internalName>
|
|
<originalFilename>original.exe</originalFilename>
|
|
</versionInfo>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<finalName>mage-client</finalName>
|
|
</build>
|
|
</project>
|