Prepare plugin hooks module

This commit is contained in:
Phoenix616 2019-01-22 23:10:03 +01:00
parent fd552c9ecb
commit 514e2bb684
2 changed files with 27 additions and 1 deletions

View File

@ -27,8 +27,9 @@
</licenses>
<modules>
<module>randomteleport-plugin</module>
<module>randomteleport-hook</module>
<module>randomteleport-plugin-hooks</module>
<module>randomteleport-plugin</module>
</modules>
<repositories>

View File

@ -0,0 +1,25 @@
<?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>
<artifactId>randomteleport-parent</artifactId>
<groupId>de.themoep.randomteleport</groupId>
<version>2.0-SNAPSHOT</version>
</parent>
<groupId>de.themoep.randomteleport.pluginhook</groupId>
<artifactId>randomteleport-plugin-hooks</artifactId>
<packaging>pom</packaging>
<dependencies>
<dependency>
<groupId>${parent.groupId}</groupId>
<artifactId>randomteleport-hook</artifactId>
<version>${version}</version>
</dependency>
</dependencies>
</project>