TF-Marriage/pom.xml

125 lines
4.6 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"
2015-02-03 21:59:57 +00:00
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>
2013-04-13 06:15:53 +00:00
2015-05-26 21:58:01 +00:00
<groupId>com.lenis0012.bukkit</groupId>
<artifactId>marriage2</artifactId>
<version>2.0</version>
2015-02-03 21:59:57 +00:00
<packaging>jar</packaging>
<name>Marriage</name>
<url>http://dev.bukkit.org/server-mods/marriage-reloaded/</url>
2013-04-13 06:15:53 +00:00
2015-02-03 21:59:57 +00:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2013-04-13 06:15:53 +00:00
2015-02-03 21:59:57 +00:00
<repositories>
<!-- Repo for access to CraftBukkit -->
<repository>
2015-05-26 21:58:01 +00:00
<id>md5-repo</id>
2016-02-23 12:10:43 +00:00
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
2015-02-03 21:59:57 +00:00
</repository>
</repositories>
2013-04-13 06:15:53 +00:00
2015-02-03 21:59:57 +00:00
<dependencies>
2016-02-23 12:10:43 +00:00
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.8.8-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
2015-02-03 21:59:57 +00:00
<dependency>
<groupId>org.bukkit</groupId>
2015-05-26 21:58:01 +00:00
<artifactId>bukkit</artifactId>
2016-02-23 12:10:43 +00:00
<version>1.8.8-R0.1-SNAPSHOT</version>
2015-02-03 21:59:57 +00:00
<scope>provided</scope>
</dependency>
2015-07-10 15:02:50 +00:00
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
2016-02-23 12:10:43 +00:00
<version>1.8.8-R0.1-SNAPSHOT</version>
<scope>provided</scope>
2015-02-03 21:59:57 +00:00
</dependency>
2016-02-23 12:10:43 +00:00
<!--<dependency>-->
<!--<groupId>org.spigotmc</groupId>-->
<!--<artifactId>spigot</artifactId>-->
<!--<version>1.8-R0.1-SNAPSHOT</version>-->
<!--<scope>system</scope>-->
<!--<systemPath>${project.basedir}/lib/spigot.jar</systemPath>-->
<!--</dependency>-->
<!--<dependency>-->
<!--<groupId>com.google.guava</groupId>-->
<!--<artifactId>guava</artifactId>-->
<!--<version>17.0</version>-->
<!--<scope>compile</scope>-->
<!--</dependency>-->
2015-02-03 21:59:57 +00:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
2013-04-13 06:15:53 +00:00
2015-02-03 21:59:57 +00:00
<!-- Build -->
<build>
<!-- Resources -->
<resources>
<resource>
<directory>src/main/resources/</directory>
<filtering>true</filtering>
<includes>
<include>*</include>
</includes>
</resource>
</resources>
<defaultGoal>clean install</defaultGoal>
2015-05-26 21:58:01 +00:00
<finalName>${project.name}</finalName>
2015-02-03 21:59:57 +00:00
<!-- Plugins -->
<plugins>
<!-- Compiler plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.4</version>
<configuration>
2016-02-23 10:55:39 +00:00
<source>1.7</source>
<target>1.7</target>
2015-02-03 21:59:57 +00:00
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
2015-07-07 23:51:50 +00:00
<!-- Generate javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<configuration>
<show>public</show>
</configuration>
</plugin>
2015-05-26 21:58:01 +00:00
<!-- Shade guava to make sure we have the reflection API even on older versions of bukkit -->
2016-02-23 12:10:43 +00:00
<!--<plugin>-->
<!--<groupId>org.apache.maven.plugins</groupId>-->
<!--<artifactId>maven-shade-plugin</artifactId>-->
<!--<version>2.2</version>-->
<!--<executions>-->
<!--<execution>-->
<!--<phase>package</phase>-->
<!--<goals>-->
<!--<goal>shade</goal>-->
<!--</goals>-->
<!--<configuration>-->
<!--<artifactSet>-->
<!--<includes>-->
<!--<include>com.google.guava:guava</include>-->
<!--</includes>-->
<!--</artifactSet>-->
<!--</configuration>-->
<!--</execution>-->
<!--</executions>-->
<!--</plugin>-->
2015-02-03 21:59:57 +00:00
</plugins>
</build>
</project>