Quests/pom.xml

70 lines
2.3 KiB
XML
Raw Permalink Normal View History

2019-03-04 04:06:34 +01:00
<?xml version="1.0" encoding="UTF-8"?>
2022-03-11 09:54:17 +01:00
<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">
2019-03-04 04:06:34 +01:00
<modelVersion>4.0.0</modelVersion>
<groupId>me.pikamug.quests</groupId>
2022-05-31 11:07:30 +02:00
<version>${revision}</version>
2022-05-16 01:52:42 +02:00
<artifactId>quests-parent</artifactId>
<packaging>pom</packaging>
2019-03-04 04:06:34 +01:00
2022-05-16 01:52:42 +02:00
<name>Quests</name>
<url>https://github.com/PikaMug/Quests/</url>
2019-03-04 04:06:34 +01:00
<modules>
<module>api</module>
2019-03-04 04:06:34 +01:00
<module>v1_8_R1</module>
<module>v1_8_R2</module>
<module>v1_8_R3</module>
2022-01-06 16:59:21 +01:00
<module>core</module>
2019-03-04 04:06:34 +01:00
<module>dist</module>
2021-09-16 06:46:48 +02:00
</modules>
2019-03-04 04:06:34 +01:00
2022-05-16 01:52:42 +02:00
<properties>
2024-03-20 11:09:26 +01:00
<revision>5.0.2</revision>
2022-05-31 11:07:30 +02:00
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
2022-05-16 01:52:42 +02:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
2019-03-04 04:06:34 +01:00
<repositories>
<repository>
2021-12-15 04:36:52 +01:00
<id>codemc-repo</id>
<url>https://repo.codemc.io/repository/nms/</url>
2019-03-04 04:06:34 +01:00
</repository>
</repositories>
2022-05-31 11:07:30 +02:00
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.1.0</version>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
<inherited>true</inherited>
</plugin>
</plugins>
</build>
2019-03-04 04:13:40 +01:00
</project>