1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-13 09:11:06 -09:00

maven dependency tree fix.

This commit is contained in:
magenoxx 2010-10-22 10:44:30 +00:00
parent 2fc9fc1301
commit 7e627dcae3

View file

@ -1,56 +1,49 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.mage</groupId>
<artifactId>mage-root</artifactId>
<version>0.3</version>
</parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>mage-root</artifactId> <artifactId>mage</artifactId>
<version>0.3</version> <packaging>jar</packaging>
</parent> <version>0.3</version>
<name>Mage Application</name>
<groupId>org.mage</groupId> <url>http://maven.apache.org</url>
<artifactId>mage</artifactId>
<packaging>jar</packaging>
<version>0.3</version>
<name>Mage Application</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>org.mage</groupId>
<artifactId>mage-sets</artifactId>
<version>${mage-version}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory> <dependencies />
<plugins> <build>
<plugin>
<groupId>org.apache.maven.plugins</groupId> <sourceDirectory>src</sourceDirectory>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version> <plugins>
<configuration> <plugin>
<source>1.6</source> <groupId>org.apache.maven.plugins</groupId>
<target>1.6</target> <artifactId>maven-compiler-plugin</artifactId>
</configuration> <version>2.0.2</version>
</plugin> <configuration>
<plugin> <source>1.6</source>
<artifactId>maven-resources-plugin</artifactId> <target>1.6</target>
<configuration> </configuration>
<encoding>UTF-8</encoding> </plugin>
</configuration> <plugin>
</plugin> <artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
<finalName>mage</finalName>
</build>
</plugins>
<finalName>mage</finalName>
</build>
<properties> <properties>
</properties> </properties>
</project> </project>