UltimateRepairing/pom.xml

95 lines
3.6 KiB
XML
Raw Normal View History

2018-10-18 23:56:45 +02:00
<project xmlns="http://maven.apache.org/POM/4.0.0">
2018-05-06 03:46:13 +02:00
<groupId>com.songoda</groupId>
2018-11-23 20:59:13 +01:00
<artifactId>UltimateRepairing</artifactId>
2018-10-18 23:56:45 +02:00
<modelVersion>4.0.0</modelVersion>
2019-04-24 05:20:27 +02:00
<version>maven-version-number</version>
2018-05-06 03:46:13 +02:00
<build>
2019-04-24 05:20:27 +02:00
<defaultGoal>clean install</defaultGoal>
2019-04-27 01:49:42 +02:00
<finalName>UltimateRepairing-${project.version}</finalName>
2018-05-06 03:46:13 +02:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2019-04-24 05:20:27 +02:00
<version>3.8.0</version>
2018-05-06 03:46:13 +02:00
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
2019-04-24 05:20:27 +02:00
<plugin>
2019-04-26 22:23:31 +02:00
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
2019-04-24 05:20:27 +02:00
<executions>
<execution>
2019-04-26 22:23:31 +02:00
<id>shaded</id>
<phase>package</phase>
2019-04-24 05:20:27 +02:00
<goals>
2019-04-26 22:23:31 +02:00
<goal>shade</goal>
2019-04-24 05:20:27 +02:00
</goals>
2019-04-26 22:23:31 +02:00
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createDependencyReducedPom>false</createDependencyReducedPom>
<artifactSet>
<includes>
<include>com.songoda:songodaupdater</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>
2019-04-24 05:20:27 +02:00
</execution>
</executions>
</plugin>
2018-05-06 03:46:13 +02:00
</plugins>
</build>
<repositories>
2018-09-29 22:45:04 +02:00
<repository>
2018-10-18 23:56:45 +02:00
<id>private</id>
2019-02-19 00:52:10 +01:00
<url>http://repo.songoda.com/artifactory/private/</url>
2018-09-29 22:45:04 +02:00
</repository>
2018-05-06 03:46:13 +02:00
</repositories>
<dependencies>
<dependency>
2018-09-29 22:39:39 +02:00
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
2019-05-22 07:07:49 +02:00
<version>1.14.1</version>
2018-07-25 18:25:48 +02:00
</dependency>
2018-05-06 03:46:13 +02:00
<dependency>
2018-10-18 23:56:45 +02:00
<groupId>com.songoda</groupId>
2019-04-26 22:23:31 +02:00
<artifactId>songodaupdater</artifactId>
<version>1</version>
2018-10-18 23:56:45 +02:00
</dependency>
<dependency>
<groupId>net.milkbowl</groupId>
<artifactId>vault</artifactId>
2019-04-24 05:20:27 +02:00
<version>1.7.1</version>
2018-10-18 23:56:45 +02:00
</dependency>
<dependency>
2019-02-19 00:52:10 +01:00
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-api</artifactId>
2019-04-24 05:20:27 +02:00
<version>2.3.2</version>
2019-02-19 00:52:10 +01:00
<scope>provided</scope>
2018-10-18 23:56:45 +02:00
</dependency>
<dependency>
<groupId>org.black_ixx</groupId>
<artifactId>playerpoints</artifactId>
<version>2.1.4</version>
</dependency>
<dependency>
<groupId>net.tnemc</groupId>
<artifactId>Reserve</artifactId>
<version>0.1.3.0</version>
<scope>provided</scope>
</dependency>
2018-05-06 03:46:13 +02:00
</dependencies>
2018-10-18 23:56:45 +02:00
</project>