mirror of
https://github.com/TotalFreedomMC/TF-Marriage.git
synced 2025-01-03 22:08:31 +00:00
90 lines
2.5 KiB
XML
90 lines
2.5 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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>me.lenis0012.mr</groupId>
|
|
<artifactId>Marriage</artifactId>
|
|
<version>1.2.6</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Marriage</name>
|
|
<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.2-R0.2-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
<artifactId>Vault</artifactId>
|
|
<version>1.2.23-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<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>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<!-- Build -->
|
|
<build>
|
|
<!-- Resources -->
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/java/</directory>
|
|
<includes>
|
|
<include>**</include>
|
|
</includes>
|
|
<!-- Don't add source files to target jar -->
|
|
<excludes>
|
|
<exclude>me/lenis0012/**/*.java</exclude>
|
|
</excludes>
|
|
</resource>
|
|
</resources>
|
|
<defaultGoal>clean install</defaultGoal>
|
|
<!-- 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>
|