WorldGeneratorApi/pom.xml

40 lines
1.2 KiB
XML
Raw Permalink Normal View History

2018-09-29 04:37:16 -07:00
<?xml version="1.0" encoding="UTF-8"?>
2018-06-24 03:37:56 -07:00
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2018-09-29 04:37:16 -07:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
2018-06-24 03:37:56 -07:00
<modelVersion>4.0.0</modelVersion>
<groupId>nl.rutgerkok</groupId>
2018-09-29 04:37:16 -07:00
<artifactId>worldgeneratorapi-parent</artifactId>
2020-09-20 07:23:37 -07:00
<version>1.1.1</version>
2018-09-29 04:37:16 -07:00
<packaging>pom</packaging>
<name>WorldGeneratorApi Parent</name>
<modules>
<module>worldgeneratorapi</module>
<module>worldgeneratorapi-impl</module>
</modules>
2018-06-24 03:37:56 -07:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
2020-05-14 11:21:53 -07:00
<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>
2018-09-29 04:37:16 -07:00
</project>