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-08 16:22:19 +02:00
|
|
|
<version>2.1</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>
|
|
|
|
<!-- Build Helper - Additional Source Folders -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
<version>1.7</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>add-wsdl-source</id>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>add-source</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<sources>
|
|
|
|
<source>${project.basedir}/lib/allpay/src</source>
|
|
|
|
<source>${project.basedir}/lib/commandhandler/src</source>
|
|
|
|
<source>${project.basedir}/lib/commandhandler/lib/ShellParser/src</source>
|
|
|
|
</sources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</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>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- Bukkit Dependency -->
|
2011-08-16 04:53:16 +02:00
|
|
|
<!-- Start of Spout -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.getspout</groupId>
|
|
|
|
<artifactId>spoutapi</artifactId>
|
|
|
|
<version>dev-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- End of Spout -->
|
2011-09-21 19:42:44 +02:00
|
|
|
<!-- Start of Economy Dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cosine.boseconomy</groupId>
|
|
|
|
<artifactId>BOSEconomy</artifactId>
|
|
|
|
<version>0.6.2</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>fr.crafter.tickleman.RealShop</groupId>
|
|
|
|
<artifactId>RealShop</artifactId>
|
|
|
|
<version>0.63</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2011-07-20 16:48:46 +02:00
|
|
|
|
2011-08-16 04:53:16 +02:00
|
|
|
<dependency>
|
2011-09-21 19:42:44 +02:00
|
|
|
<groupId>com.iCo6</groupId>
|
2011-08-16 04:53:16 +02:00
|
|
|
<artifactId>iConomy</artifactId>
|
|
|
|
<version>6.0</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2011-07-20 16:48:46 +02:00
|
|
|
|
2011-09-21 19:42:44 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.iConomy</groupId>
|
|
|
|
<artifactId>iConomy</artifactId>
|
|
|
|
<version>5.0</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.nijiko.coelho.iConomy</groupId>
|
|
|
|
<artifactId>iConomy</artifactId>
|
|
|
|
<version>4.65</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2011-07-20 16:48:46 +02:00
|
|
|
|
2011-09-21 19:42:44 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.earth2me.essentials</groupId>
|
|
|
|
<artifactId>Essentials</artifactId>
|
|
|
|
<version>2.4.2</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-08-17 02:02:43 +02:00
|
|
|
<groupId>me.ashtheking.currency</groupId>
|
|
|
|
<artifactId>MultiCurrency</artifactId>
|
|
|
|
<version>0.09</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2011-09-21 19:42:44 +02:00
|
|
|
<!-- End of Economy Dependencies -->
|
2011-09-25 20:02:28 +02:00
|
|
|
<!-- Start of JUnit Dependencies -->
|
2011-09-21 19:42:44 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.8.2</version>
|
|
|
|
</dependency>
|
2011-09-25 20:02:28 +02:00
|
|
|
<!-- End of JUnit Dependencies -->
|
2011-09-21 19:42:44 +02:00
|
|
|
</dependencies>
|
2011-07-30 23:42:31 +02:00
|
|
|
</project>
|