2018-08-21 01:43:58 +02: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>org.codemc.worldguardwrapper</groupId>
|
|
|
|
<artifactId>worldguardwrapper-parent</artifactId>
|
2020-05-29 20:07:11 +02:00
|
|
|
<version>1.1.7-SNAPSHOT</version>
|
2018-08-21 01:43:58 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>worldguardwrapper</artifactId>
|
|
|
|
|
|
|
|
<name>WorldGuardWrapper-Library</name>
|
|
|
|
|
|
|
|
<dependencies>
|
2018-11-27 08:49:46 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>worldguardwrapper-api</artifactId>
|
2020-05-29 20:07:11 +02:00
|
|
|
<version>1.1.7-SNAPSHOT</version>
|
2019-02-23 01:00:04 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>worldguardwrapper-implementation-legacy</artifactId>
|
2020-05-29 20:07:11 +02:00
|
|
|
<version>1.1.7-SNAPSHOT</version>
|
2018-11-27 08:49:46 +01:00
|
|
|
</dependency>
|
2018-08-21 01:43:58 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>worldguardwrapper-implementation-v6</artifactId>
|
2020-05-29 20:07:11 +02:00
|
|
|
<version>1.1.7-SNAPSHOT</version>
|
2018-08-21 01:43:58 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>worldguardwrapper-implementation-v7</artifactId>
|
2020-05-29 20:07:11 +02:00
|
|
|
<version>1.1.7-SNAPSHOT</version>
|
2019-01-13 12:33:47 +01:00
|
|
|
</dependency>
|
2018-08-21 01:43:58 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|