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>
|
2021-07-04 15:42:38 +00:00
|
|
|
<version>0.7.3-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>
|
|
|
|
</relocations>
|
|
|
|
|
2021-06-22 23:57:03 +00:00
|
|
|
<outputFile>D:\Code\java\spigotPlugins\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-06-29 04:50:30 +00:00
|
|
|
<!--<repository>
|
2021-04-04 17:23:48 +00:00
|
|
|
<id>codemc-snapshots</id>
|
|
|
|
<url>https://repo.codemc.io/repository/maven-snapshots/</url>
|
2021-06-29 04:50:30 +00:00
|
|
|
</repository>-->
|
2020-04-08 18:34:01 +00:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
2021-04-04 19:51:04 +00:00
|
|
|
<artifactId>spigot</artifactId>
|
2020-09-03 16:27:43 +00:00
|
|
|
<version>1.14-R0.1-SNAPSHOT</version>
|
2020-04-08 18:34:01 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.tr7zw</groupId>
|
|
|
|
<artifactId>item-nbt-api</artifactId>
|
2021-06-22 23:57:03 +00:00
|
|
|
<version>2.8.0</version>
|
2020-04-08 18:34:01 +00:00
|
|
|
</dependency>
|
2021-06-29 04:50:30 +00:00
|
|
|
<!-- This is currently compiled by myself with some fixes for anything older than Java 16.
|
|
|
|
Its compiled from SeanOMik/AnvilGUI on github -->
|
2020-04-08 18:34:01 +00:00
|
|
|
<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-06-22 23:57:03 +00:00
|
|
|
<version>1.5.1-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>
|
2020-04-08 18:34:01 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|