mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2024-11-05 18:29:34 +01:00
264 lines
10 KiB
XML
264 lines
10 KiB
XML
<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>com.onarandombox.multiversecore</groupId>
|
|
<artifactId>Multiverse-Core</artifactId>
|
|
<version>2.4</version>
|
|
<name>Multiverse-Core</name>
|
|
<description>World Management Plugin</description>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.build.number>UNKNOWN</project.build.number>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>onarandombox</id>
|
|
<url>http://repo.onarandombox.com/content/groups/public</url>
|
|
</repository>
|
|
<repository>
|
|
<id>Bukkit Official</id>
|
|
<url>http://repo.bukkit.org/content/repositories/public</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>doodleproject-repo</id>
|
|
<name>DoodleProject Maven 2 Repository</name>
|
|
<url>http://doodleproject.sourceforge.net/maven2/release</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<ciManagement>
|
|
<system>jenkins</system>
|
|
<url>http://ci.onarandombox.com</url>
|
|
</ciManagement>
|
|
|
|
<!-- Profiles are used to detect whether this is a local or Jenkins build
|
|
and adjust the build number accordingly -->
|
|
<profiles>
|
|
<profile>
|
|
<id>jenkins</id>
|
|
<activation>
|
|
<property>
|
|
<name>env.BUILD_NUMBER</name>
|
|
</property>
|
|
</activation>
|
|
<properties>
|
|
<project.build.number>${env.BUILD_NUMBER}</project.build.number>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<build>
|
|
<defaultGoal>clean package</defaultGoal>
|
|
<plugins>
|
|
<!-- Compiler -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
|
<artifactId>maven-replacer-plugin</artifactId>
|
|
<version>1.3.8</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>prepare-package</phase>
|
|
<goals>
|
|
<goal>replace</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<file>target/classes/plugin.yml</file>
|
|
<replacements>
|
|
<replacement>
|
|
<token>maven-version-number</token>
|
|
<value>${project.version}-b${project.build.number}</value>
|
|
</replacement>
|
|
</replacements>
|
|
</configuration>
|
|
</plugin>
|
|
<!-- Jar Plugin -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.3.1</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifestEntries>
|
|
</manifestEntries>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
<!-- Maven Source Plugin -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>2.1.2</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.11</version>
|
|
<configuration>
|
|
<parallel>methods</parallel>
|
|
<threadCount>10</threadCount>
|
|
<excludes>
|
|
<exclude>**/TestCommandSender.java</exclude>
|
|
<exclude>**/TestInstanceCreator.java</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven.surefire</groupId>
|
|
<artifactId>surefire-junit47</artifactId>
|
|
<version>2.11</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<version>2.8</version>
|
|
<configuration>
|
|
<enableRulesSummary>true</enableRulesSummary>
|
|
<configLocation>${project.basedir}/config/mv_checks.xml</configLocation>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>1.5</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifactSet>
|
|
<includes>
|
|
<include>me.main__.util:SerializationConfig</include>
|
|
<include>com.fernferret.allpay:AllPay</include>
|
|
<include>com.pneumaticraft.commandhandler:CommandHandler</include>
|
|
</includes>
|
|
</artifactSet>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>com.fernferret.allpay</pattern>
|
|
<shadedPattern>com.fernferret.allpay.multiverse</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>me.main__.util</pattern>
|
|
<shadedPattern>me.main__.util.multiverse</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.pneumaticraft.commandhandler</pattern>
|
|
<shadedPattern>com.pneumaticraft.commandhandler.multiverse</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<!-- Bukkit Dependency -->
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<version>1.1-R5-SNAPSHOT</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- Bukkit Dependency -->
|
|
<!-- Start of Spout -->
|
|
<dependency>
|
|
<groupId>org.getspout</groupId>
|
|
<artifactId>spoutpluginapi</artifactId>
|
|
<version>dev-SNAPSHOT</version>
|
|
</dependency>
|
|
<!-- End of Spout -->
|
|
<!-- SerializationConfig Dependency -->
|
|
<dependency>
|
|
<groupId>me.main__.util</groupId>
|
|
<artifactId>SerializationConfig</artifactId>
|
|
<version>1.3</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- End of SerializationConfig Dependency -->
|
|
<!-- Start of AllPay Dependency -->
|
|
<dependency>
|
|
<groupId>com.fernferret.allpay</groupId>
|
|
<artifactId>AllPay</artifactId>
|
|
<version>8</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- End of AllPay Dependency -->
|
|
<!-- Start of CommandHandler Dependency -->
|
|
<dependency>
|
|
<groupId>com.pneumaticraft.commandhandler</groupId>
|
|
<artifactId>CommandHandler</artifactId>
|
|
<version>6</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- End of CommandHandler Dependency -->
|
|
<!-- Start of Test Dependencies -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.8.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.powermock</groupId>
|
|
<artifactId>powermock-module-junit4</artifactId>
|
|
<version>1.4.9</version>
|
|
<type>jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.powermock</groupId>
|
|
<artifactId>powermock-api-easymock</artifactId>
|
|
<version>1.4.9</version>
|
|
<type>jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.powermock</groupId>
|
|
<artifactId>powermock-api-mockito</artifactId>
|
|
<version>1.4.9</version>
|
|
<type>jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.easymock</groupId>
|
|
<artifactId>easymock</artifactId>
|
|
<version>3.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- End of Test Dependencies -->
|
|
</dependencies>
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>OnARandomBox</id>
|
|
<url>http://repo.onarandombox.com/content/repositories/multiverse</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
</project>
|