TF-Marriage/pom.xml

195 lines
7.4 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>
2016-02-25 12:49:32 +00:00
<version>2.0.2-SNAPSHOT</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>
2016-02-25 12:26:05 +00:00
<!--<repository>-->
<!--<id>vault-repo</id>-->
<!--<url>http://nexus.theyeticave.net/content/repositories/pub_releases</url>-->
<!--</repository>-->
2015-02-03 21:59:57 +00:00
</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>
2016-02-24 16:52:57 +00:00
<scope>system</scope>
<systemPath>${project.basedir}/lib/spigot.jar</systemPath>
2015-02-03 21:59:57 +00:00
</dependency>
2016-02-24 15:50:05 +00:00
<dependency>
<groupId>com.lenis0012.updater</groupId>
<artifactId>updater-api</artifactId>
<version>1</version>
<scope>compile</scope>
</dependency>
2016-02-25 12:26:05 +00:00
<!--<dependency>-->
<!--<groupId>net.milkbowl.vault</groupId>-->
<!--<artifactId>VaultAPI</artifactId>-->
<!--<version>1.5</version>-->
<!--<scope>provided</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
2016-02-24 15:50:05 +00:00
<profiles>
<profile>
<id>bukkit</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
2016-02-24 17:32:24 +00:00
<properties>
<project.updaterInfo>44364</project.updaterInfo>
</properties>
2016-02-24 15:50:05 +00:00
<dependencies>
<dependency>
<groupId>com.lenis0012.updater</groupId>
<artifactId>updater-bukkit</artifactId>
<version>1</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
2016-02-25 09:51:28 +00:00
<finalName>${project.name}-Bukkit-${project.version}</finalName>
2016-02-24 15:50:05 +00:00
<artifactSet>
<includes>
<include>com.lenis0012.updater:updater-api</include>
<include>com.lenis0012.updater:updater-bukkit</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>spigot</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
2016-02-24 17:32:24 +00:00
<properties>
<project.updaterInfo>https://raw.githubusercontent.com/lenis0012/Marriage/master/latest_version.json</project.updaterInfo>
</properties>
2016-02-24 15:50:05 +00:00
<dependencies>
<dependency>
<groupId>com.lenis0012.updater</groupId>
<artifactId>updater-spigot</artifactId>
<version>1</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
2016-02-25 09:51:28 +00:00
<finalName>${project.name}-Spigot-${project.version}</finalName>
2016-02-24 15:50:05 +00:00
<artifactSet>
<includes>
<include>com.lenis0012.updater:updater-api</include>
<include>com.lenis0012.updater:updater-spigot</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
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>
2016-02-24 15:50:05 +00:00
<!--<defaultGoal>install</defaultGoal>-->
2016-02-25 09:53:07 +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-02-03 21:59:57 +00:00
</plugins>
</build>
</project>