mirror of
https://github.com/NLthijs48/AreaShop.git
synced 2024-11-16 15:25:11 +01:00
121de7dc7e
- Build number option can be used by Jenkins to add the build number - Build number of soruce on Github will be #CUSTOM to mark custom builds - Release versions will not contain a build number - Closes #185
43 lines
1.4 KiB
XML
43 lines
1.4 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>me.wiefferink</groupId>
|
|
<artifactId>areashop-parent</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>parent</version>
|
|
<name>AreaShop Parent</name>
|
|
<url>https://github.com/NLthijs48/AreaShop</url>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>bukkit-repo</id>
|
|
<url>http://repo.bukkit.org/content/groups/public</url>
|
|
</repository>
|
|
<repository>
|
|
<id>sk89q-repo-wg</id>
|
|
<url>http://maven.sk89q.com/artifactory/repo/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>vault-repo</id>
|
|
<url>http://nexus.theyeticave.net/content/repositories/pub_releases</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
|
<build.number>#CUSTOM</build.number>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>WorldGuard 5</module>
|
|
<module>WorldGuard 6</module>
|
|
<module>WorldGuard 6_1_3</module>
|
|
<module>Interfaces</module>
|
|
<module>WorldEdit 5</module>
|
|
<module>WorldEdit 6</module>
|
|
<module>AreaShop</module>
|
|
</modules>
|
|
|
|
</project> |