2020-04-08 18:34:01 +00:00
|
|
|
<?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>net.seanomik</groupId>
|
|
|
|
<artifactId>energeticstorage</artifactId>
|
2022-03-07 02:46:04 +00:00
|
|
|
<version>0.7.7-SNAPSHOT</version>
|
2020-04-08 18:34:01 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>EnergeticStorage</name>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2021-06-22 23:57:03 +00:00
|
|
|
<server.version>1.17</server.version>
|
2020-04-08 18:34:01 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<defaultGoal>clean package</defaultGoal>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.7.0</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2021-06-22 23:57:03 +00:00
|
|
|
<version>3.3.0-SNAPSHOT</version>
|
2020-04-08 18:34:01 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>shade</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2020-07-20 21:29:13 +00:00
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>de.tr7zw.changeme.nbtapi</pattern>
|
|
|
|
<shadedPattern>de.tr7zw.nbtapi.energeticstorage</shadedPattern>
|
|
|
|
</relocation>
|
2021-12-13 00:54:31 +00:00
|
|
|
<relocation>
|
|
|
|
<pattern>net.wesjd.anvilgui</pattern>
|
|
|
|
<shadedPattern>net.seanomik.energeticstorage.anvilgui</shadedPattern>
|
|
|
|
</relocation>
|
2022-01-26 01:43:58 +00:00
|
|
|
<relocation>
|
|
|
|
<pattern>org.bstats</pattern>
|
|
|
|
<!-- Replace this with your package! -->
|
|
|
|
<shadedPattern>net.seanomik.energeticstorage.bstats</shadedPattern>
|
|
|
|
</relocation>
|
2020-07-20 21:29:13 +00:00
|
|
|
</relocations>
|
|
|
|
|
2022-03-07 02:46:04 +00:00
|
|
|
<!--<outputFile>/home/seanomik/Development/java/spigot-dev/test-servers/${server.version}/plugins/EnergeticStorage-v${project.version}.jar</outputFile>-->
|
|
|
|
<outputFile>C:\Development\Java\Spigot Servers\${server.version}\plugins\EnergeticStorage-v${project.version}.jar</outputFile>
|
2020-04-08 18:34:01 +00:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
|
2021-06-22 23:57:03 +00:00
|
|
|
<!-- For maven-shade-plugin 3.3.0-SNAPSHOT -->
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>apache.snapshots</id>
|
|
|
|
<url>https://repository.apache.org/snapshots/</url>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
|
2020-04-08 18:34:01 +00:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigotmc-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>codemc-repo</id>
|
|
|
|
<url>https://repo.codemc.org/repository/maven-public/</url>
|
|
|
|
<layout>default</layout>
|
|
|
|
</repository>
|
2021-12-11 19:28:27 +00:00
|
|
|
<repository>
|
|
|
|
<id>minecraft-repo</id>
|
|
|
|
<url>https://libraries.minecraft.net/</url>
|
|
|
|
<layout>default</layout>
|
|
|
|
</repository>
|
2020-04-08 18:34:01 +00:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
2021-12-11 19:28:27 +00:00
|
|
|
<artifactId>spigot-api</artifactId>
|
2021-12-13 00:54:31 +00:00
|
|
|
<version>1.14-R0.1-SNAPSHOT</version>
|
2021-12-11 19:28:27 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-04-08 18:34:01 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>de.tr7zw</groupId>
|
|
|
|
<artifactId>item-nbt-api</artifactId>
|
2022-03-07 02:46:04 +00:00
|
|
|
<version>2.9.2-SNAPSHOT</version>
|
2020-04-08 18:34:01 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-04-04 17:23:48 +00:00
|
|
|
<groupId>net.wesjd</groupId>
|
2020-04-08 18:34:01 +00:00
|
|
|
<artifactId>anvilgui</artifactId>
|
2021-12-13 00:54:31 +00:00
|
|
|
<version>1.5.3-SNAPSHOT</version>
|
2020-04-08 18:34:01 +00:00
|
|
|
</dependency>
|
2021-02-24 19:32:55 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
|
|
<artifactId>json-simple</artifactId>
|
|
|
|
<version>1.1.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-text</artifactId>
|
|
|
|
<version>1.9</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
<version>13.0</version>
|
|
|
|
</dependency>
|
2021-12-11 19:28:27 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.mojang</groupId>
|
|
|
|
<artifactId>authlib</artifactId>
|
|
|
|
<version>1.5.21</version>
|
|
|
|
</dependency>
|
2022-01-26 01:43:58 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bstats</groupId>
|
|
|
|
<artifactId>bstats-bukkit</artifactId>
|
|
|
|
<version>2.2.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-04-08 18:34:01 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|