TF-Marriage/pom.xml

89 lines
2.5 KiB
XML
Raw Normal View History

2013-04-13 06:15:53 +00:00
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>me.lenis0012.mr</groupId>
2013-04-13 06:28:45 +00:00
<artifactId>Marriage</artifactId>
2014-03-13 08:09:55 +00:00
<version>1.2.6</version>
2013-04-13 06:15:53 +00:00
<packaging>jar</packaging>
2013-04-13 06:28:45 +00:00
<name>Marriage</name>
2013-04-13 06:15:53 +00:00
<url>http://dev.bukkit.org/server-mods/marriage-reloaded/</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<repositories>
<!-- Repo for access to Vault -->
<repository>
<id>vault-repo</id>
<url>http://ci.herocraftonline.com/plugin/repository/everything/</url>
</repository>
<!-- Repo for access to CraftBukkit -->
<repository>
<id>bukkit-repo</id>
<url>http://repo.bukkit.org/content/groups/public</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
<version>1.7.10-R0.1-SNAPSHOT</version>
2013-04-13 06:15:53 +00:00
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>Vault</artifactId>
<version>1.2.23-SNAPSHOT</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
2014-03-13 07:38:25 +00:00
<dependency>
<groupId>com.dthielke</groupId>
<artifactId>Herochat</artifactId>
<version>5.6.7-SNAPSHOT</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/HeroChat.jar</systemPath>
</dependency>
2013-04-13 06:15:53 +00:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<!-- Build -->
<build>
<!-- Resources -->
<resources>
<resource>
2014-11-14 19:37:31 +00:00
<directory>src/main/resources/</directory>
<filtering>true</filtering>
2013-04-13 06:15:53 +00:00
<includes>
2014-11-14 19:37:31 +00:00
<include>*</include>
2013-04-13 06:15:53 +00:00
</includes>
</resource>
</resources>
<defaultGoal>clean install</defaultGoal>
<finalName>Marriage</finalName>
2013-04-13 06:15:53 +00:00
<!-- Plugins -->
<plugins>
<!-- Compiler plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.4</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>
</build>
</project>