117 lines
3.8 KiB
XML
117 lines
3.8 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/maven-v4_0_0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>net.seanomik</groupId>
|
||
|
<artifactId>energeticstorage</artifactId>
|
||
|
<name>EnergeticStorage</name>
|
||
|
<version>0.1-SNAPSHOT</version>
|
||
|
<build>
|
||
|
<defaultGoal>clean package</defaultGoal>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<filtering>true</filtering>
|
||
|
<directory>src/main/resources</directory>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.7.0</version>
|
||
|
<configuration>
|
||
|
<source>${java.version}</source>
|
||
|
<target>${java.version}</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<artifactId>maven-shade-plugin</artifactId>
|
||
|
<version>3.1.0</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>shade</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<outputFile>D:\Code\java\spigotPlugins\_TEST_SERVER_1.15.2_\plugins\EnergeticStorage-MC-v1.15.X-v${project.version}.jar</outputFile>
|
||
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<artifactId>maven-shade-plugin</artifactId>
|
||
|
<version>3.2.1</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>shade</id>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>shade</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
<configuration>
|
||
|
<relocations>
|
||
|
<relocation>
|
||
|
<pattern>de.tr7zw.changeme.nbtapi</pattern>
|
||
|
<shadedPattern>de.tr7zw.nbtapi</shadedPattern>
|
||
|
</relocation>
|
||
|
</relocations>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
<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>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>maven-repository</id>
|
||
|
<url>file:///${project.basedir}/maven-repository</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.spigotmc</groupId>
|
||
|
<artifactId>spigot-api</artifactId>
|
||
|
<version>1.15.2-R0.1-SNAPSHOT</version>
|
||
|
<scope>provided</scope>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<artifactId>commons-lang</artifactId>
|
||
|
<groupId>commons-lang</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>guava</artifactId>
|
||
|
<groupId>com.google.guava</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>gson</artifactId>
|
||
|
<groupId>com.google.code.gson</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>bungeecord-chat</artifactId>
|
||
|
<groupId>net.md-5</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>snakeyaml</artifactId>
|
||
|
<groupId>org.yaml</groupId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<properties>
|
||
|
<java.version>1.8</java.version>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
</project>
|