12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?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.Linus122.customoregen</groupId>
- <artifactId>parent</artifactId>
- <version>1.2.32</version>
- <name>CustomOreGen Parent</name>
- <url>https://www.spigotmc.org/resources/time-is-money.12409/</url>
- <packaging>pom</packaging>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <modules>
- <module>Plugin</module>
- </modules>
- <repositories>
- <repository>
- <id>spigot-repo</id>
- <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
- </repository>
- <repository>
- <id>vault-repo</id>
- <url>http://nexus.hc.to/content/repositories/pub_releases</url>
- </repository>
- <repository>
- <id>ess-repo</id>
- <url>http://repo.ess3.net/content/groups/essentials</url>
- </repository>
- <repository>
- <id>bintray-tastybento-maven-repo</id>
- <name>bintray</name>
- <url>http://dl.bintray.com/tastybento/maven-repo</url>
- </repository>
- <repository>
- <id>uSkyBlock-mvn-repo</id>
- <url>https://raw.github.com/rlf/uSkyBlock/mvn-repo/</url>
- <snapshots>
- <enabled>true</enabled>
- <updatePolicy>always</updatePolicy>
- </snapshots>
- </repository>
- </repositories>
- <build>
- <defaultGoal>clean package install</defaultGoal>
- <finalName>${project.name}</finalName>
- <sourceDirectory>src/main/java</sourceDirectory>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.1</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>2.4</version>
- <configuration>
- <archive>
- <addMavenDescriptor>false</addMavenDescriptor>
- </archive>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|