EpicBuckets/pom.xml

194 lines
6.8 KiB
XML
Raw Normal View History

2018-10-25 06:26:09 +02:00
<project xmlns="http://maven.apache.org/POM/4.0.0">
<groupId>com.songoda</groupId>
<artifactId>EpicBuckets</artifactId>
2018-11-01 03:01:18 +01:00
<modelVersion>4.0.0</modelVersion>
<version>1.0.2</version>
2018-10-25 06:26:09 +02:00
<build>
<defaultGoal>clean package</defaultGoal>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>EpicAnchors-API/src/main/java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<version>3.6.1</version>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>shaded</shadedClassifierName>
<relocations>
<relocation>
<pattern>co.aikar.commands</pattern>
<shadedPattern>${project.groupId}.${project.artifactId}.acf</shadedPattern>
</relocation>
</relocations>
</configuration>
</plugin>
2018-10-25 06:26:09 +02:00
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<sourceDirectory>src/main/java</sourceDirectory>
</build>
<repositories>
<repository>
<id>11_private</id>
2018-10-25 06:26:09 +02:00
<url>http://repo.songoda.com/repository/private</url>
</repository>
<repository>
<id>22_vault</id>
2018-10-30 19:23:26 +01:00
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
2018-10-25 06:26:09 +02:00
</repository>
2018-11-30 23:20:36 +01:00
<repository>
<id>33_aikar</id>
2018-11-30 23:20:36 +01:00
<url>https://repo.aikar.co/content/groups/aikar/</url>
</repository>
2018-10-25 06:26:09 +02:00
</repositories>
<dependencies>
2018-11-30 23:20:36 +01:00
<dependency>
<groupId>co.aikar</groupId>
<artifactId>acf-paper</artifactId>
2018-11-30 23:20:36 +01:00
<version>0.5.0-SNAPSHOT</version>
<scope>compile</scope>
2018-11-30 23:20:36 +01:00
</dependency>
2018-11-30 00:04:47 +01:00
<dependency>
<groupId>me.lucko</groupId>
<artifactId>helper</artifactId>
<version>LATEST</version>
<scope>provided</scope>
</dependency>
2018-10-25 06:26:09 +02:00
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
2018-11-30 00:04:47 +01:00
<version>1.13.2</version>
<scope>provided</scope>
2018-10-25 06:26:09 +02:00
</dependency>
<dependency>
<groupId>com.songoda</groupId>
<artifactId>arconix</artifactId>
<version>LATEST</version>
<scope>provided</scope>
2018-10-25 06:26:09 +02:00
</dependency>
<dependency>
<groupId>org</groupId>
<artifactId>kingdoms</artifactId>
<version>LATEST</version>
<scope>provided</scope>
2018-10-25 06:26:09 +02:00
</dependency>
<dependency>
2018-10-30 19:23:26 +01:00
<groupId>net.milkbowl.vault</groupId>
<artifactId>VaultAPI</artifactId>
2018-10-30 19:14:44 +01:00
<version>LATEST</version>
<scope>provided</scope>
2018-10-25 06:26:09 +02:00
</dependency>
<dependency>
<groupId>me.ryanhamshire</groupId>
<artifactId>GriefPrevention</artifactId>
<version>LATEST</version>
<scope>provided</scope>
2018-10-25 06:26:09 +02:00
</dependency>
<dependency>
<groupId>com.sk89q</groupId>
<artifactId>worldedit</artifactId>
<version>LATEST</version>
<scope>provided</scope>
2018-10-25 06:26:09 +02:00
</dependency>
<dependency>
<groupId>com.sk89q</groupId>
<artifactId>worldguard</artifactId>
<version>6.2.2</version>
<scope>provided</scope>
2018-10-25 06:26:09 +02:00
</dependency>
<dependency>
<groupId>com</groupId>
<artifactId>plotsquared</artifactId>
<version>RELEASE</version>
<scope>provided</scope>
2018-10-25 06:26:09 +02:00
</dependency>
<dependency>
<groupId>com.palmergames.bukkit</groupId>
<artifactId>towny</artifactId>
<version>LATEST</version>
<scope>provided</scope>
2018-10-25 06:26:09 +02:00
</dependency>
<dependency>
<groupId>com.wasteofplastic</groupId>
<artifactId>askyblock</artifactId>
<version>3.0.6.8</version>
<scope>provided</scope>
2018-10-25 06:26:09 +02:00
</dependency>
<dependency>
<groupId>us.talabrek</groupId>
<artifactId>ultimateskyblock</artifactId>
<version>LATEST</version>
<scope>provided</scope>
2018-10-25 06:26:09 +02:00
</dependency>
<dependency>
<groupId>me.markeh</groupId>
<artifactId>factionsframework</artifactId>
<version>1.2.0</version>
<scope>provided</scope>
2018-10-25 06:26:09 +02:00
</dependency>
<dependency>
<groupId>br.net.fabiozumbi12</groupId>
<artifactId>RedProtect</artifactId>
<version>7.3.0</version>
<scope>provided</scope>
2018-10-25 06:26:09 +02:00
</dependency>
<dependency>
<groupId>com.songoda</groupId>
<artifactId>epicspawners</artifactId>
<version>LATEST</version>
<scope>provided</scope>
2018-10-25 06:26:09 +02:00
</dependency>
<dependency>
<groupId>com.massivecraft</groupId>
<artifactId>factions</artifactId>
<version>LATEST</version>
<scope>provided</scope>
2018-10-25 06:26:09 +02:00
</dependency>
<dependency>
<groupId>com.massivecraft</groupId>
<artifactId>factionsuuid</artifactId>
<version>LATEST</version>
<scope>provided</scope>
2018-10-25 06:26:09 +02:00
</dependency>
</dependencies>
</project>