ShopChest/pom.xml

80 lines
2.5 KiB
XML
Raw Normal View History

2016-07-03 20:59:29 +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>
<groupId>de.epiceric.shopchest</groupId>
<artifactId>shopchest-parent</artifactId>
2018-07-25 12:52:28 +02:00
<version>1.13-SNAPSHOT</version>
<packaging>pom</packaging>
2017-07-27 01:17:34 +02:00
<modules>
<module>api</module>
<module>implementation</module>
</modules>
2016-07-03 20:59:29 +02:00
<properties>
2018-07-25 12:52:28 +02:00
<!-- Encoding Properties -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.outputEncoding>UTF-8</project.build.outputEncoding>
2016-07-05 15:08:44 +02:00
2017-07-27 01:17:34 +02:00
<!-- JDK Version -->
2018-07-25 12:52:28 +02:00
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
2016-07-03 20:59:29 +02:00
</properties>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<dependency>
2016-11-17 20:30:26 +01:00
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.14.4-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
2016-07-03 20:59:29 +02:00
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
2016-07-03 20:59:29 +02:00
<plugins>
2018-07-25 12:52:28 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<goals>
2018-07-25 12:52:28 +02:00
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- TODO: Re-enable javadoc -->
<!-- <plugin>
2016-07-05 15:08:44 +02:00
<groupId>org.apache.maven.plugins</groupId>
2018-07-25 12:52:28 +02:00
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
2016-07-05 15:08:44 +02:00
<executions>
<execution>
<goals>
2018-07-25 12:52:28 +02:00
<goal>jar</goal>
2016-07-05 15:08:44 +02:00
</goals>
</execution>
</executions>
</plugin> -->
2016-07-03 20:59:29 +02:00
</plugins>
</build>
2018-05-21 12:16:49 +02:00
</project>