Quests/v1_8_R3/pom.xml

78 lines
2.8 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"
2020-11-17 22:24:38 +01:00
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>
2021-12-08 07:12:13 +01:00
<version>4.1.3</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-api</artifactId>
2019-03-27 03:45:19 +01:00
<version>${revision}</version>
<scope>compile</scope>
</dependency>
2019-01-14 08:18:16 +01:00
</dependencies>
<build>
2020-11-17 22:24:38 +01:00
<defaultGoal>clean install</defaultGoal>
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
2019-01-14 08:18:16 +01:00
2020-11-17 22:24:38 +01:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
2019-01-14 08:18:16 +01:00
2020-11-17 22:24:38 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
</plugin>
2019-01-14 08:18:16 +01:00
2020-11-17 22:24:38 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2021-10-09 22:24:55 +02:00
<version>3.2.4</version>
2020-11-17 22:24:38 +01:00
<executions>
2020-11-17 22:23:37 +01:00
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
2020-11-17 22:24:38 +01:00
<minimizeJar>true</minimizeJar>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
2020-11-17 22:23:37 +01:00
</execution>
</executions>
2020-11-17 22:24:38 +01:00
<configuration>
<artifactSet>
2020-11-17 09:29:12 +01:00
<includes>
<include>me.*</include>
</includes>
</artifactSet>
</configuration>
2020-11-17 22:24:38 +01:00
</plugin>
</plugins>
</build>
2019-01-14 08:18:16 +01:00
</project>