Quests/v1_8_R3/pom.xml

86 lines
2.7 KiB
XML
Raw Normal View History

2019-01-14 08:18:16 +01:00
<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">
2019-01-14 08:18:16 +01:00
<modelVersion>4.0.0</modelVersion>
<artifactId>quests-v1_8_R3</artifactId>
<parent>
<groupId>me.blackvein.quests</groupId>
<artifactId>quests-parent</artifactId>
2019-03-27 01:19:27 +01:00
<version>3.6.5</version>
2019-01-14 08:18:16 +01:00
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
<version>1.8.8-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>me.blackvein.quests</groupId>
<artifactId>quests-main</artifactId>
2019-03-27 01:19:27 +01:00
<version>3.6.5</version>
<scope>compile</scope>
</dependency>
2019-01-14 08:18:16 +01:00
</dependencies>
<build>
<defaultGoal>clean install</defaultGoal>
2019-01-14 08:18:16 +01:00
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*</exclude>
</excludes>
</filter>
</filters>
<artifactSet>
<excludes>
<exclude>com.*</exclude>
<exclude>net.*</exclude>
<exclude>org.*</exclude>
<exclude>io.*</exclude>
</excludes>
</artifactSet>
</configuration>
2019-01-14 08:18:16 +01:00
</plugin>
</plugins>
</build>
</project>