EpicEnchants/pom.xml

127 lines
4.8 KiB
XML
Raw Normal View History

2019-08-04 23:49:57 +02:00
<project xmlns="http://maven.apache.org/POM/4.0.0">
2019-01-16 13:01:24 +01:00
<groupId>com.songoda</groupId>
2019-08-04 23:49:57 +02:00
<artifactId>EpicEnchants</artifactId>
<modelVersion>4.0.0</modelVersion>
2021-06-13 22:55:56 +02:00
<version>1.1.11</version>
2019-01-16 13:01:24 +01:00
<build>
2019-08-04 23:49:57 +02:00
<defaultGoal>clean install</defaultGoal>
2019-08-05 04:42:37 +02:00
<finalName>EpicEnchants-${project.version}</finalName>
2019-01-16 13:01:24 +01:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2019-08-04 23:49:57 +02:00
<version>3.8.0</version>
2019-01-16 13:01:24 +01:00
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
<version>1.5.3</version>
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>replace</goal>
</goals>
</execution>
</executions>
<configuration>
<file>${project.build.directory}/classes/plugin.yml</file>
<replacements>
<replacement>
<token>maven-version-number</token>
<value>${project.version}</value>
</replacement>
</replacements>
</configuration>
</plugin>
2019-08-04 23:49:57 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2021-06-13 22:55:28 +02:00
<version>3.3.0-SNAPSHOT</version>
2019-08-04 23:49:57 +02:00
<executions>
<execution>
<id>shaded</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createDependencyReducedPom>false</createDependencyReducedPom>
<artifactSet>
<includes>
<include>com.songoda:SongodaCore</include>
2019-08-04 23:49:57 +02:00
<include>fr.mymicky:FastInv</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
2019-01-16 13:01:24 +01:00
</plugins>
</build>
2021-06-13 22:55:28 +02:00
<pluginRepositories>
<pluginRepository>
<id>apache.snapshots</id>
<url>https://repository.apache.org/snapshots/</url>
</pluginRepository>
</pluginRepositories>
2019-08-04 23:49:57 +02:00
<repositories>
2020-03-16 20:27:10 +01:00
<repository>
<id>public</id>
<url>https://repo.songoda.com/repository/public/</url>
2020-03-16 20:27:10 +01:00
</repository>
2019-08-04 23:49:57 +02:00
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
2021-06-13 22:55:28 +02:00
<version>1.17</version>
<scope>provided</scope>
2019-08-04 23:49:57 +02:00
</dependency>
<dependency>
<groupId>fr.mrmicky</groupId>
<artifactId>FastInv</artifactId>
<version>3.0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore</artifactId>
<version>LATEST</version>
<scope>compile</scope>
2019-08-04 23:49:57 +02:00
</dependency>
<dependency>
<groupId>com.songoda</groupId>
<artifactId>UltimateBottles</artifactId>
<version>1_0</version>
<scope>provided</scope>
2019-08-04 23:49:57 +02:00
</dependency>
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.9.2</version>
<scope>provided</scope>
</dependency>
</dependencies>
2020-09-22 05:37:13 +02:00
</project>