UltimateModeration/pom.xml

112 lines
4.4 KiB
XML
Raw Normal View History

2019-02-27 02:50:18 +01:00
<project xmlns="http://maven.apache.org/POM/4.0.0">
<groupId>com.songoda</groupId>
<artifactId>UltimateModeration</artifactId>
<modelVersion>4.0.0</modelVersion>
2020-03-12 15:15:55 +01:00
<version>1.2.5</version>
2019-02-27 02:50:18 +01:00
<build>
<defaultGoal>clean install</defaultGoal>
<finalName>UltimateModeration-${project.version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
2020-02-01 12:16:35 +01:00
<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-02-27 02:50:18 +01:00
<plugin>
2019-04-26 09:37:00 +02:00
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
2019-02-27 02:50:18 +01:00
<executions>
<execution>
2019-04-26 09:37:00 +02:00
<id>shaded</id>
<phase>package</phase>
2019-02-27 02:50:18 +01:00
<goals>
2019-04-26 09:37:00 +02:00
<goal>shade</goal>
2019-02-27 02:50:18 +01:00
</goals>
2019-04-26 09:37:00 +02:00
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createDependencyReducedPom>false</createDependencyReducedPom>
<artifactSet>
<includes>
2019-10-19 19:29:46 +02:00
<include>com.songoda:SongodaCore</include>
2019-04-26 09:37:00 +02:00
</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>
2019-10-19 19:29:46 +02:00
<relocations>
<relocation>
<pattern>com.songoda.core</pattern>
<shadedPattern>${project.groupId}.ultimatemoderation.core</shadedPattern>
</relocation>
</relocations>
2019-04-26 09:37:00 +02:00
</configuration>
2019-02-27 02:50:18 +01:00
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>private</id>
<url>http://repo.songoda.com/artifactory/private/</url>
</repository>
2020-03-16 18:32:37 +01:00
<repository>
<id>public</id>
<url>https://repo.songoda.com/artifactory/public/</url>
</repository>
2019-02-27 02:50:18 +01:00
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
2020-02-01 12:16:35 +01:00
<version>1.15</version>
2019-04-26 09:37:00 +02:00
</dependency>
<dependency>
<groupId>com.songoda</groupId>
<artifactId>abledskyblock</artifactId>
<version>79.1</version>
<scope>provided</scope>
</dependency>
2019-04-26 09:37:00 +02:00
<dependency>
<groupId>com.songoda</groupId>
2019-10-19 19:29:46 +02:00
<artifactId>SongodaCore</artifactId>
2020-02-01 12:16:35 +01:00
<version>maven-version-number</version>
2019-10-19 19:29:46 +02:00
<scope>compile</scope>
2019-08-24 16:36:04 +02:00
</dependency>
2019-02-27 02:50:18 +01:00
</dependencies>
</project>