mirror of
https://github.com/songoda/SongodaCore.git
synced 2024-11-23 18:45:34 +01:00
110 lines
3.5 KiB
XML
110 lines
3.5 KiB
XML
<?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>com.songoda</groupId>
|
|
<artifactId>SongodaCore-Modules</artifactId>
|
|
<version>2.5.12</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<!-- Run 'mvn versions:set -DgenerateBackupPoms=false -DnewVersion=X.Y.Z' to update version recursively -->
|
|
<!-- Change version in com.songoda.core.SongodaCore too -->
|
|
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
<java.release>8</java.release>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>Core</module>
|
|
<module>Compatibility</module>
|
|
<module>NMS/NMS-API</module>
|
|
<module>NMS/NMS-v1_8_R1</module>
|
|
<module>NMS/NMS-v1_8_R2</module>
|
|
<module>NMS/NMS-v1_8_R3</module>
|
|
<module>NMS/NMS-v1_9_R1</module>
|
|
<module>NMS/NMS-v1_9_R2</module>
|
|
<module>NMS/NMS-v1_10_R1</module>
|
|
<module>NMS/NMS-v1_11_R1</module>
|
|
<module>NMS/NMS-v1_12_R1</module>
|
|
<module>NMS/NMS-v1_13_R1</module>
|
|
<module>NMS/NMS-v1_13_R2</module>
|
|
<module>NMS/NMS-v1_14_R1</module>
|
|
<module>NMS/NMS-v1_15_R1</module>
|
|
<module>NMS/NMS-v1_16_R1</module>
|
|
<module>NMS/NMS-v1_16_R2</module>
|
|
<module>NMS/NMS-v1_16_R3</module>
|
|
<module>NMS/NMS-v1_17_R1</module>
|
|
</modules>
|
|
|
|
<issueManagement>
|
|
<url>https://support.songoda.com/servicedesk/customer/portal/3</url>
|
|
<system>Jira Service Desk</system>
|
|
</issueManagement>
|
|
|
|
<scm>
|
|
<url>https://github.com/songoda/SongodaCore</url>
|
|
<connection>scm:git:git:github.com/songoda/SongodaCore.git</connection>
|
|
</scm>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
|
|
<release>${java.release}</release>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>apache.snapshots</id>
|
|
<url>https://repository.apache.org/snapshots/</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>songoda-public</id>
|
|
<url>https://repo.songoda.com/repository/public/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>spigotmc-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>CodeMC</id>
|
|
<url>https://repo.codemc.org/repository/maven-public/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>jitpack.io</id>
|
|
<url>https://jitpack.io/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jetbrains</groupId>
|
|
<artifactId>annotations</artifactId>
|
|
<version>13.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|