giants/pom.xml

65 lines
1.8 KiB
XML
Raw Normal View History

2022-01-29 13:01:49 +00:00
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>giants</groupId>
<artifactId>giants</artifactId>
2022-10-23 09:24:05 +00:00
<version>22.10.1</version>
2022-01-29 13:01:49 +00:00
<properties>
2022-10-10 15:14:47 +00:00
<maven.compiler.source>17</maven.compiler.source>
2022-02-06 17:32:53 +00:00
<maven.compiler.target>17</maven.compiler.target>
2022-01-29 13:01:49 +00:00
</properties>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
2022-09-28 14:03:57 +00:00
<version>1.19.2-R0.1-SNAPSHOT</version>
2022-01-29 13:01:49 +00:00
<scope>provided</scope>
</dependency>
2022-01-31 11:37:41 +00:00
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
2022-09-28 14:03:57 +00:00
<version>3.0.0</version>
2022-01-31 11:37:41 +00:00
<scope>compile</scope>
</dependency>
2022-01-29 13:01:49 +00:00
</dependencies>
2022-01-29 13:24:20 +00:00
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
2022-01-31 11:37:41 +00:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2022-09-28 14:03:57 +00:00
<version>3.4.0</version>
2022-01-31 11:37:41 +00:00
<configuration>
<relocations>
<relocation>
<pattern>org.bstats</pattern>
<shadedPattern>pl.minecon724.giants</shadedPattern>
</relocation>
</relocations>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
2022-01-29 13:24:20 +00:00
</build>
2022-01-29 13:01:49 +00:00
</project>