Minepacks/pom.xml

187 lines
5.2 KiB
XML
Raw Permalink Normal View History

<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>at.pcgamingfreaks</groupId>
2020-02-17 01:16:20 +01:00
<artifactId>Minepacks-Parent</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
2020-02-22 17:27:16 +01:00
<properties>
<revision>2.4.29</revision>
2020-02-22 17:27:16 +01:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2021-11-05 20:25:13 +01:00
2023-06-02 21:17:11 +02:00
<configFileVersion>34</configFileVersion>
<languageFileVersion>21</languageFileVersion>
2024-04-22 20:58:11 +02:00
<pcgfPluginLibVersion>1.0.39.4-SNAPSHOT</pcgfPluginLibVersion>
<bukkitVersion>1.15.2-R0.1-SNAPSHOT</bukkitVersion>
2024-04-22 20:58:11 +02:00
<mavenShade.version>3.5.3</mavenShade.version>
<author>GeorgH93</author>
<maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format>
<timestamp>${maven.build.timestamp}</timestamp>
<pluginVersion>${project.version}-T${timestamp}</pluginVersion>
2021-11-05 20:25:13 +01:00
<sonar.organization>georgh93</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
2020-02-22 17:27:16 +01:00
</properties>
<scm>
2018-04-28 15:04:37 +02:00
<connection>scm:git:git@github.com:GeorgH93/Minepacks.git</connection>
<developerConnection>scm:git:git@github.com:GeorgH93/Minepacks.git</developerConnection>
<url>git@github.com:GeorgH93/Minepacks.git</url>
</scm>
<issueManagement>
<system>GitHub</system>
2018-04-28 15:04:37 +02:00
<url>https://github.com/GeorgH93/Minepacks/issues</url>
</issueManagement>
<ciManagement>
<system>jenkins</system>
<url>https://ci.pcgamingfreaks.at/job/Minepacks/</url>
</ciManagement>
2020-02-17 01:16:20 +01:00
<name>Minepacks-Parent</name>
2023-07-08 17:01:02 +02:00
<description>Minepacks is a backpack plugin with different backpack sizes, multi-language support and SQLite and MySQL storage support.</description>
<url>https://www.spigotmc.org/resources/19286/</url>
<inceptionYear>2014</inceptionYear>
<licenses>
<license>
<name>GNU General Public License (GPL) v3</name>
2023-06-15 20:07:38 +02:00
<url>https://www.gnu.org/licenses/gpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<repositories>
<repository>
<id>pcgf-repo</id>
2019-04-29 18:06:03 +02:00
<url>https://repo.pcgamingfreaks.at/repository/maven-everything/</url>
</repository>
2016-11-06 18:09:23 +01:00
<repository>
<id>spigot-nexus</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
</repository>
</repositories>
<dependencies>
2020-02-23 23:50:18 +01:00
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>23.1.0</version>
2020-02-23 23:50:18 +01:00
</dependency>
<!-- Bukkit -->
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>${bukkitVersion}</version>
<scope>provided</scope>
</dependency>
2020-02-22 17:27:16 +01:00
<!-- Lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.32</version>
2020-02-22 17:27:16 +01:00
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<defaultGoal>clean package</defaultGoal>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
2019-12-13 21:13:42 +01:00
<version>3.8.1</version>
<configuration>
2017-06-10 20:30:39 +02:00
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
2020-02-22 17:27:16 +01:00
<!-- Resolve lombok -->
<plugin>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-maven-plugin</artifactId>
<version>1.18.10.0</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>delombok</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Flatten pom for deployment -->
<plugin>
2020-02-17 01:16:20 +01:00
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.2.1</version>
<configuration>
<updatePomFile>true</updatePomFile>
<pomElements>
<description/>
<inceptionYear/>
<organization/>
<scm/>
<developers/>
<contributors/>
<mailingLists/>
<issueManagement/>
<repositories/>
<ciManagement/>
<!--<url/><pluginRepositories/><distributionManagement/>-->
</pomElements>
</configuration>
<executions>
<execution>
2020-02-17 01:16:20 +01:00
<id>flatten</id>
<phase>process-resources</phase>
<goals>
2020-02-17 01:16:20 +01:00
<goal>flatten</goal>
</goals>
</execution>
<execution>
2020-02-17 01:16:20 +01:00
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
2020-02-17 01:16:20 +01:00
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
2020-02-17 01:16:20 +01:00
<modules>
<module>Minepacks-API</module>
2023-01-26 19:35:21 +01:00
<module>Components/Minepacks-MagicValues</module>
2020-02-17 01:16:20 +01:00
<module>Minepacks</module>
</modules>
2019-05-30 02:36:25 +02:00
<profiles>
<profile>
<id>Release</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<modules>
<module>Components/Minepacks-BadRabbit-Bukkit</module>
2023-02-22 23:29:29 +01:00
<module>Components/Minepacks-Bootstrap-Paper</module>
</modules>
</profile>
</profiles>
<distributionManagement>
<repository>
<id>releases</id>
2019-04-29 18:06:03 +02:00
<url>https://repo.pcgamingfreaks.at/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
2019-04-29 18:06:03 +02:00
<url>https://repo.pcgamingfreaks.at/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>