mirror of
https://github.com/DRE2N/DungeonsXL.git
synced 2024-11-05 10:19:47 +01:00
39 lines
1.4 KiB
XML
39 lines
1.4 KiB
XML
<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>
|
|
<groupId>de.erethon.dungeonsxl</groupId>
|
|
<artifactId>dungeonsxl-api</artifactId>
|
|
<version>0.18-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
<parent>
|
|
<groupId>de.erethon.dungeonsxl</groupId>
|
|
<artifactId>dungeonsxl-parent</artifactId>
|
|
<version>0.18-SNAPSHOT</version>
|
|
</parent>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>3.1.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadocs</id>
|
|
<phase>install</phase>
|
|
<goals>
|
|
<goal>javadoc</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<version>${spigotVersion.latest}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|