2011-07-20 16:48:46 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2011-09-21 19:42:44 +02:00
|
|
|
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>
|
2011-10-19 19:59:03 +02:00
|
|
|
<version>2.2</version>
|
2011-09-21 19:42:44 +02:00
|
|
|
<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>
|
2011-07-20 16:48:46 +02:00
|
|
|
|
2011-09-21 19:42:44 +02:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>OnARandomBox</id>
|
|
|
|
<url>http://repo.onarandombox.com/artifactory/repo</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2011-07-20 16:48:46 +02:00
|
|
|
|
2011-09-21 19:42:44 +02:00
|
|
|
<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>
|
|
|
|
|
|
|
|
<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}-${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>
|
2011-10-15 16:33:03 +02:00
|
|
|
<!-- Maven Source Plugin -->
|
2011-09-21 19:42:44 +02:00
|
|
|
<plugin>
|
2011-10-15 16:33:03 +02:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>2.1.2</version>
|
2011-09-21 19:42:44 +02:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- Bukkit Dependency -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
2011-11-22 05:07:20 +01:00
|
|
|
<version>1.0.0-R1-SNAPSHOT</version>
|
2011-09-21 19:42:44 +02:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- Bukkit Dependency -->
|
2011-11-26 06:45:27 +01:00
|
|
|
<!-- CommandHandler Dependency -->
|
2011-09-21 19:42:44 +02:00
|
|
|
<dependency>
|
2011-11-26 06:45:27 +01:00
|
|
|
<groupId>com.pneumaticraft</groupId>
|
|
|
|
<artifactId>CommandHandler</artifactId>
|
|
|
|
<version>3</version>
|
2011-09-21 19:42:44 +02:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2011-11-26 06:45:27 +01:00
|
|
|
<!-- CommandHandler Dependency -->
|
|
|
|
<!-- AllPay Dependency -->
|
2011-08-16 04:53:16 +02:00
|
|
|
<dependency>
|
2011-11-26 06:45:27 +01:00
|
|
|
<groupId>com.fernferret.allpay</groupId>
|
|
|
|
<artifactId>AllPay</artifactId>
|
|
|
|
<version>3</version>
|
2011-09-21 19:42:44 +02:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2011-11-26 06:45:27 +01:00
|
|
|
<!-- AllPay Dependency -->
|
|
|
|
<!-- Start of Spout -->
|
2011-09-21 19:42:44 +02:00
|
|
|
<dependency>
|
2011-11-26 06:45:27 +01:00
|
|
|
<groupId>org.getspout</groupId>
|
|
|
|
<artifactId>spoutapi</artifactId>
|
|
|
|
<version>dev-SNAPSHOT</version>
|
2011-08-17 02:02:43 +02:00
|
|
|
</dependency>
|
2011-11-26 06:45:27 +01:00
|
|
|
<!-- End of Spout -->
|
2011-10-15 15:47:07 +02:00
|
|
|
<!-- Start of Test Dependencies -->
|
2011-09-21 19:42:44 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.8.2</version>
|
|
|
|
</dependency>
|
2011-10-15 15:47:07 +02:00
|
|
|
<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 -->
|
2011-09-21 19:42:44 +02:00
|
|
|
</dependencies>
|
2011-07-30 23:42:31 +02:00
|
|
|
</project>
|