ShopChest/pom.xml

110 lines
3.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>
2022-08-21 19:19:09 +02:00
<version>2.0-SNAPSHOT</version>
<packaging>pom</packaging>
2017-07-27 01:17:34 +02:00
<modules>
<module>api</module>
<module>core</module>
2019-12-15 14:27:51 +01:00
<module>nms</module>
</modules>
2016-07-03 20:59:29 +02:00
2020-03-19 15:02:34 +01:00
<name>ShopChest Parent</name>
2020-03-19 15:15:22 +01:00
<scm>
<connection>scm:git:https://github.com/EpicEricEE/ShopChest.git</connection>
<developerConnection>scm:git:git@github.com:EpicEricEE/ShopChest.git</developerConnection>
<url>https://github.com/EpicEricEE/ShopChest</url>
<tag>HEAD</tag>
</scm>
<ciManagement>
<system>jenkins</system>
<url>http://ci.codemc.io/job/EpicEricEE/job/ShopChest/</url>
</ciManagement>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/EpicEricEE/ShopChest/issues</url>
</issueManagement>
<distributionManagement>
<repository>
<id>codemc-releases</id>
<url>https://repo.codemc.io/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>codemc-snapshots</id>
<url>https://repo.codemc.io/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
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 -->
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</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>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
2022-08-21 16:38:25 +02:00
<version>1.19.2-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>
2020-03-19 15:15:22 +01:00
<version>3.2.1</version>
<executions>
<execution>
<goals>
2020-03-19 15:15:22 +01:00
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
2020-03-19 15:15:22 +01:00
<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>
2022-08-21 16:38:25 +02:00
<version>3.4.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>
2020-03-19 15:15:22 +01:00
</plugin>
2016-07-03 20:59:29 +02:00
</plugins>
</build>
2018-05-21 12:16:49 +02:00
</project>