2019-01-14 08:18:16 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>me.blackvein.quests</groupId>
|
|
|
|
<artifactId>quests-parent</artifactId>
|
2019-06-03 22:27:52 +02:00
|
|
|
<version>3.7.1</version>
|
2019-01-14 08:18:16 +01:00
|
|
|
</parent>
|
|
|
|
<artifactId>quests-dist</artifactId>
|
2019-01-15 01:27:56 +01:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2019-01-14 08:18:16 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<finalName>Quests-${project.version}</finalName>
|
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
|
|
</configuration>
|
2019-03-01 20:42:16 +01:00
|
|
|
<version>3.1.1</version>
|
2019-01-14 08:18:16 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>package-all</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/main/assembly/all-jar.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.blackvein.quests</groupId>
|
|
|
|
<artifactId>quests-main</artifactId>
|
2019-03-27 03:56:35 +01:00
|
|
|
<version>${revision}</version>
|
2019-01-14 08:18:16 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.blackvein.quests</groupId>
|
|
|
|
<artifactId>quests-v1_8_R3</artifactId>
|
2019-03-27 03:56:35 +01:00
|
|
|
<version>${revision}</version>
|
2019-01-14 08:18:16 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.blackvein.quests</groupId>
|
|
|
|
<artifactId>quests-v1_8_R2</artifactId>
|
2019-03-27 03:56:35 +01:00
|
|
|
<version>${revision}</version>
|
2019-01-14 08:18:16 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.blackvein.quests</groupId>
|
|
|
|
<artifactId>quests-v1_8_R1</artifactId>
|
2019-03-27 03:56:35 +01:00
|
|
|
<version>${revision}</version>
|
2019-01-14 08:18:16 +01:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|