TF-Marriage/pom.xml

233 lines
9.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"
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>
2019-04-29 09:22:42 +00:00
<version>2.0.19</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-26 14:58:05 +00:00
<repository>
<id>vault-repo</id>
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
2016-02-26 14:58:05 +00:00
</repository>
<repository>
<id>lenis0012-repo</id>
<url>http://ci.lenis0012.com/plugin/repository/everything/</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>
2018-12-31 16:44:48 +00:00
<artifactId>spigot-api</artifactId>
2018-12-31 16:42:47 +00:00
<version>1.13.2-R0.1-SNAPSHOT</version>
2015-02-03 21:59:57 +00:00
<scope>provided</scope>
</dependency>
2016-06-14 14:09:26 +00:00
<dependency>
<groupId>com.plotsquared.bukkit</groupId>
<artifactId>PlotSquared</artifactId>
<version>3.3.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/PlotSquared.jar</systemPath>
</dependency>
2016-03-01 22:34:23 +00:00
<dependency>
<groupId>com.lenis0012.bukkit</groupId>
<artifactId>lenisutils</artifactId>
2018-12-31 16:42:47 +00:00
<version>1.0</version>
2016-03-01 22:34:23 +00:00
<scope>compile</scope>
</dependency>
2016-02-24 15:50:05 +00:00
<dependency>
<groupId>com.lenis0012.updater</groupId>
<artifactId>updater-api</artifactId>
2018-12-31 16:42:47 +00:00
<version>1.0</version>
2016-02-24 15:50:05 +00:00
<scope>compile</scope>
</dependency>
2016-02-26 14:58: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
</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>
2018-12-31 16:42:47 +00:00
<version>1.0</version>
2016-02-24 15:50:05 +00:00
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
2018-12-31 16:50:30 +00:00
<version>3.2.1</version>
2016-02-24 15:50:05 +00:00
<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>
2016-03-19 16:27:08 +00:00
<relocations>
<relocation>
<pattern>com.lenis0012.updater</pattern>
<shadedPattern>com.lenis0012.bukkit.marriage2.libs.updater</shadedPattern>
</relocation>
</relocations>
2016-02-24 15:50:05 +00:00
</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>
2018-12-31 16:42:47 +00:00
<version>1.0</version>
2016-02-24 15:50:05 +00:00
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
2018-12-31 16:50:30 +00:00
<version>3.2.1</version>
2016-02-24 15:50:05 +00:00
<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>
2016-03-19 13:44:27 +00:00
<relocations>
<relocation>
<pattern>com.lenis0012.updater</pattern>
<shadedPattern>com.lenis0012.bukkit.marriage2.libs.updater</shadedPattern>
</relocation>
</relocations>
2016-02-24 15:50:05 +00:00
</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>
2016-03-23 03:14:31 +00:00
<sourceDirectory>src/main/java</sourceDirectory>
2015-02-03 21:59:57 +00:00
<!-- Plugins -->
<plugins>
<!-- Compiler plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2018-12-31 16:50:30 +00:00
<version>3.7.0</version>
2015-02-03 21:59:57 +00:00
<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>
2016-03-01 01:23:53 +00:00
<showDeprecation>false</showDeprecation> <!-- TODO: Change back to true when setItemInHand fixed -->
2015-02-03 21:59:57 +00:00
</configuration>
</plugin>
2016-02-26 14:58:05 +00:00
<plugin>
<artifactId>maven-shade-plugin</artifactId>
2018-12-31 16:50:30 +00:00
<version>3.2.1</version>
2016-02-26 14:58:05 +00:00
<executions>
<execution>
<id>general</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
2016-03-06 15:44:01 +00:00
<createDependencyReducedPom>false</createDependencyReducedPom>
2016-02-26 14:58:05 +00:00
<artifactSet>
<includes>
2016-03-01 22:34:23 +00:00
<include>com.lenis0012.bukkit:lenisutils</include>
2016-02-26 14:58:05 +00:00
</includes>
</artifactSet>
2016-03-06 15:44:01 +00:00
<relocations>
<relocation>
2016-03-06 15:45:57 +00:00
<pattern>com.lenis0012.pluginutils</pattern>
2016-03-06 23:09:03 +00:00
<shadedPattern>com.lenis0012.bukkit.marriage2.libs.pluginutils</shadedPattern>
2016-03-06 15:44:01 +00:00
</relocation>
</relocations>
2016-02-26 14:58:05 +00:00
</configuration>
</execution>
</executions>
</plugin>
2015-07-07 23:51:50 +00:00
<!-- Generate javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
2017-02-07 21:42:41 +00:00
<version>2.10.4</version>
2015-07-07 23:51:50 +00:00
<configuration>
<show>public</show>
</configuration>
</plugin>
2015-02-03 21:59:57 +00:00
</plugins>
</build>
</project>