mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
70 lines
1.8 KiB
XML
70 lines
1.8 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-Plugins</artifactId>
|
|
<version>0.3</version>
|
|
</parent>
|
|
|
|
<groupId>org.mage</groupId>
|
|
<artifactId>Mage-Card-Plugin</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>${plugin-version}</version>
|
|
<name>Mage Card Plugin</name>
|
|
<description>Plugin for drawing card</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.mage</groupId>
|
|
<artifactId>Mage-Common</artifactId>
|
|
<version>${mage-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.googlecode.jspf</groupId>
|
|
<artifactId>jspf-core</artifactId>
|
|
<version>${jspf-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
<version>1.2.9</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.collections</groupId>
|
|
<artifactId>google-collections</artifactId>
|
|
<version>1.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mortennobel</groupId>
|
|
<artifactId>java-image-scaling</artifactId>
|
|
<version>0.8.4</version>
|
|
<scope>provided</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>
|
|
|
|
</plugins>
|
|
|
|
<finalName>mage-card-plugin</finalName>
|
|
</build>
|
|
|
|
<properties>
|
|
<plugin-version>0.3</plugin-version>
|
|
<jspf-version>0.9.1</jspf-version>
|
|
</properties>
|
|
</project>
|