mirror of
https://github.com/amalthea-mc/ShopChest.git
synced 2024-11-08 19:51:05 +00:00
3b9d26c079
* Fix: Few improvements * Few improvements * Hologram/item can wait after shop creation * Compare worlds using their name * Fix holograms display * Changed version to 1.12.4 * Display shop after creation * Fix requested changed * Improve performance for simple hologram conditions
314 lines
12 KiB
XML
314 lines
12 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>de.epiceric</groupId>
|
|
<artifactId>ShopChest</artifactId>
|
|
<version>${version.final}</version>
|
|
|
|
<name>${project.artifactId}</name>
|
|
<url>https://www.spigotmc.org/resources/shopchest.11431/</url>
|
|
<description>Let your players create their own nice-looking shops to sell their stuff to other players!</description>
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
<!-- Project Properties -->
|
|
<projectEncoding>UTF-8</projectEncoding>
|
|
<project.build.sourceEncoding>${projectEncoding}</project.build.sourceEncoding>
|
|
<project.build.outputEncoding>${projectEncoding}</project.build.outputEncoding>
|
|
|
|
<!-- JDK Version -->
|
|
<jdkVersion>1.7</jdkVersion>
|
|
<maven.compiler.source>${jdkVersion}</maven.compiler.source>
|
|
<maven.compiler.target>${jdkVersion}</maven.compiler.target>
|
|
|
|
<!-- Versioning -->
|
|
<version.number>1.12.4</version.number>
|
|
<version.final>${version.number}-${version.git}</version.final>
|
|
|
|
<!-- Others -->
|
|
<github.global.server>github</github.global.server>
|
|
<javadoc.opts><!-- Only jdk 1.8 and later --></javadoc.opts>
|
|
</properties>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>default</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>net.md-5</groupId>
|
|
<artifactId>scriptus</artifactId>
|
|
<version>0.2</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>describe</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<descriptionProperty>version.git</descriptionProperty>
|
|
<format>%s</format>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
<profile>
|
|
<id>doclint-java8</id>
|
|
<activation>
|
|
<jdk>[1.8,)</jdk>
|
|
</activation>
|
|
<properties>
|
|
<javadoc.opts>-Xdoclint:none</javadoc.opts>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>release</id>
|
|
<properties>
|
|
<version.final>${version.number}</version.final>
|
|
</properties>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.10.4</version>
|
|
<configuration>
|
|
<additionalparam>${javadoc.opts}</additionalparam>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
<phase>package</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>vault-repo</id>
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>bstats-repo</id>
|
|
<url>http://repo.bstats.org/content/repositories/releases/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>xephi-repo</id>
|
|
<url>http://ci.xephi.fr/plugin/repository/everything/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>sk89q-repo</id>
|
|
<url>http://maven.sk89q.com/artifactory/repo/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>athion-repo</id>
|
|
<url>http://ci.athion.net/job/PlotSquared/ws/mvn/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>uskyblock-repo</id>
|
|
<url>https://raw.github.com/rlf/uSkyBlock/mvn-repo/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>tastybento-repo</id>
|
|
<url>http://dl.bintray.com/tastybento/maven-repo</url>
|
|
</repository>
|
|
<repository>
|
|
<id>jitpack-repo</id>
|
|
<url>https://jitpack.io</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<version>1.12-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
<artifactId>VaultAPI</artifactId>
|
|
<version>1.6</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bstats</groupId>
|
|
<artifactId>bstats-bukkit</artifactId>
|
|
<version>1.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.xephi</groupId>
|
|
<artifactId>authme</artifactId>
|
|
<version>5.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.plotsquared</groupId>
|
|
<artifactId>plotsquared-api</artifactId>
|
|
<version>latest</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.rlf</groupId>
|
|
<artifactId>uSkyBlock-API</artifactId>
|
|
<version>2.6.4</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.wasteofplastic</groupId>
|
|
<artifactId>askyblock</artifactId>
|
|
<version>3.0.6.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.TechFortress</groupId>
|
|
<artifactId>GriefPrevention</artifactId>
|
|
<version>16.6</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.palmergames</groupId>
|
|
<artifactId>Towny</artifactId>
|
|
<version>0.91.4.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/Towny-0.91.4.0.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>pl.gnacik</groupId>
|
|
<artifactId>IslandWorld</artifactId>
|
|
<version>7.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/IslandWorld-7.0.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sk89q</groupId>
|
|
<artifactId>worldguard</artifactId>
|
|
<version>6.1.3-SNAPSHOT</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/worldguard-6.1.3-SNAPSHOT.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>me.wiefferink</groupId>
|
|
<artifactId>areashop</artifactId>
|
|
<version>2.4.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/AreaShop-2.4.0.jar</systemPath>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>internal-maven-repo</id>
|
|
<url>file://${project.build.directory}/gh-pages/maven</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>prepare-package</phase>
|
|
<goals>
|
|
<goal>resources</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<targetPath>.</targetPath>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>2.3</version>
|
|
<configuration>
|
|
<artifactSet>
|
|
<includes>
|
|
<include>org.bstats:*</include>
|
|
</includes>
|
|
</artifactSet>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>org.bstats</pattern>
|
|
<shadedPattern>de.epiceric.shopchest.utils</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<version>2.7</version>
|
|
<configuration>
|
|
<altDeploymentRepository>internal-maven-repo::default::file://${project.build.directory}/gh-pages/maven</altDeploymentRepository>
|
|
<javadoc>${project.build.directory}/${project.build.finalName}-javadoc.jar</javadoc>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.github.github</groupId>
|
|
<artifactId>site-maven-plugin</artifactId>
|
|
<version>0.12</version>
|
|
<configuration>
|
|
<message>
|
|
Updated Maven Artifact
|
|
|
|
Artifact: ${project.artifactId}
|
|
Version: ${project.version}
|
|
Timestamp: ${maven.build.timestamp}
|
|
</message>
|
|
<outputDirectory>${project.build.directory}/gh-pages</outputDirectory>
|
|
<branch>refs/heads/gh-pages</branch>
|
|
<merge>true</merge>
|
|
<repositoryName>ShopChest</repositoryName>
|
|
<repositoryOwner>EpicEricEE</repositoryOwner>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>deploy</phase>
|
|
<goals>
|
|
<goal>site</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |