hestia/pom.xml
2025-05-13 19:22:57 +03:00

304 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>me.quartz</groupId>
<artifactId>HestiaCore</artifactId>
<version>1.0.7</version>
<name>HestiaCore</name>
<description>Tag, Rank, Punishment, Grant, Essentials Server Core.</description>
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<archive>y
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
<finalName>${project.name}</finalName>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
<!--outputFile>C:\Users\Vlad\Downloads\dewnmdikwerdjnuninwe\cheruiwhwierf\plugins\HestiaCore-nonobf.jar</outputFile-->
<relocations>
<relocation>
<pattern>com.zaxxer.hikari</pattern>
<shadedPattern>me.quartz.libs.hikari</shadedPattern>
</relocation>
<relocation>
<pattern>com.google.guava</pattern>
<shadedPattern>me.quartz.libs.guava</shadedPattern>
</relocation>
<relocation>
<pattern>org.slf4j</pattern>
<shadedPattern>me.quartz.libs.hikari.slf4j</shadedPattern>
</relocation>
<relocation>
<pattern>redis.clients</pattern>
<shadedPattern>me.quartz.libs.jedis</shadedPattern>
</relocation>
<relocation>
<pattern>com.mongodb</pattern>
<shadedPattern>me.quartz.libs.mongodb</shadedPattern>
</relocation>
<relocation>
<pattern>org.mariadb</pattern>
<shadedPattern>me.quartz.libs.mariadb</shadedPattern>
</relocation>
<relocation>
<pattern>org.bson</pattern>
<shadedPattern>me.quartz.libs.bson</shadedPattern>
</relocation>
<relocation>
<pattern>org.mariadb.jdbc</pattern>
<shadedPattern>me.quartz.libs.mariadb</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
<repository>
<id>snapshots-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
<repository>
<id>minecraft-repo</id>
<url>https://libraries.minecraft.net/</url>
</repository>
<repository>
<id>spigot-vault-api</id>
<url>https://ci.ender.zone/plugin/repository/everything/</url>
</repository>
<repository>
<id>placeholderapi</id>
<url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
</repository>
<repository>
<id>local-maven-repo</id>
<url>file:///C:/Users/Vlad/Documents/hestia%20compile%20test%20fuck%20shit%20balls/hestia/Hestia-main/libraries</url>
</repository>
<repository>
<id>localrepository</id>
<url>file://${project.basedir}/libraries</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.mojang</groupId>
<artifactId>authlib</artifactId>
<version>1.5.21</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.10</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>3.12.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>bson</artifactId>
<version>4.1.0-rc0</version>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>3.4.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>2.6.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.8.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ru.tehkode.permissions.bukkit</groupId>
<artifactId>PermissionsEx</artifactId>
<version>1.22.10</version>
<scope>system</scope>
<systemPath>${project.basedir}\libraries\PermissionsEx-1.22.10.jar</systemPath>
</dependency>
<dependency>
<groupId>com.allatori</groupId>
<artifactId>Annotations</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}\libraries\allatori-annotations.jar</systemPath>
</dependency>
<dependency>
<groupId>net.minecraft</groupId>
<artifactId>spigot1.8.8n</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}\libraries\spigot-1.8.8-R0.1-SNAPSHOT-latest.jar</systemPath>
</dependency>
<dependency>
<groupId>net.minecraft</groupId>
<artifactId>spigot183</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}\libraries\spigot-1.8.3.jar</systemPath>
</dependency>
<dependency>
<groupId>net.minecraft</groupId>
<artifactId>spigot18</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}\libraries\spigot-1.8.jar</systemPath>
</dependency>
<dependency>
<groupId>net.minecraft</groupId>
<artifactId>spigot19</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}\libraries\spigot-1.9.jar</systemPath>
</dependency>
<dependency>
<groupId>net.minecraft</groupId>
<artifactId>spigot110</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}\libraries\spigot-1.10.2.jar</systemPath>
</dependency>
<dependency>
<groupId>net.minecraft</groupId>
<artifactId>spigot111</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}\libraries\spigot-1.11.jar</systemPath>
</dependency>
<dependency>
<groupId>net.minecraft</groupId>
<artifactId>spigot112</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}\libraries\spigot-1.12.jar</systemPath>
</dependency>
<dependency>
<groupId>net.minecraft</groupId>
<artifactId>spigot113</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}\libraries\spigot-1.13.jar</systemPath>
</dependency>
<dependency>
<groupId>net.minecraft</groupId>
<artifactId>spigot1131</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}\libraries\spigot-1.13.1.jar</systemPath>
</dependency>
<dependency>
<groupId>net.minecraft</groupId>
<artifactId>spigot114</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}\libraries\spigot-1.14.jar</systemPath>
</dependency>
<dependency>
<groupId>net.minecraft</groupId>
<artifactId>spigot115</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}\libraries\spigot-1.15.jar</systemPath>
</dependency>
<dependency>
<groupId>net.minecraft</groupId>
<artifactId>spigot1161</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}\libraries\spigot-1.8.8-R0.1-SNAPSHOT-latest.jar</systemPath>
</dependency>
<dependency>
<groupId>net.minecraft</groupId>
<artifactId>spigot1162</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}\libraries\spigot-1.16.2.jar</systemPath>
</dependency>
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.9.2</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>