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>
|
2016-05-03 16:45:32 +02:00
|
|
|
<version>2.5.0-SNAPSHOT</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>
|
2011-12-09 16:04:46 +01:00
|
|
|
<project.build.number>UNKNOWN</project.build.number>
|
2011-09-21 19:42:44 +02:00
|
|
|
</properties>
|
2011-07-20 16:48:46 +02:00
|
|
|
|
2011-09-21 19:42:44 +02:00
|
|
|
<repositories>
|
2016-01-30 13:01:53 +01:00
|
|
|
<!-- Spigot -->
|
2016-03-12 21:00:29 +01:00
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2011-12-11 21:08:30 +01:00
|
|
|
<repository>
|
|
|
|
<id>onarandombox</id>
|
2011-12-26 02:43:30 +01:00
|
|
|
<url>http://repo.onarandombox.com/content/groups/public</url>
|
2011-12-11 21:08:30 +01:00
|
|
|
</repository>
|
2012-01-26 01:13:30 +01:00
|
|
|
<repository>
|
2015-07-14 17:40:58 +02:00
|
|
|
<id>spigot</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
2012-01-26 01:13:30 +01:00
|
|
|
</repository>
|
2015-10-29 01:10:03 +01:00
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
2016-10-27 00:49:30 +02:00
|
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
|
2015-10-29 01:10:03 +01:00
|
|
|
</repository>
|
2016-03-01 02:04:26 +01:00
|
|
|
<!-- Has a copy of metrics R8-SNAPSHOT !-->
|
|
|
|
<repository>
|
|
|
|
<id>elmakers-repo</id>
|
|
|
|
<url>http://maven.elmakers.com/repository/</url>
|
|
|
|
</repository>
|
2011-09-21 19:42:44 +02:00
|
|
|
</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>
|
2011-12-11 21:08:30 +01:00
|
|
|
<url>http://ci.onarandombox.com</url>
|
2011-09-21 19:42:44 +02:00
|
|
|
</ciManagement>
|
|
|
|
|
2011-12-09 16:04:46 +01:00
|
|
|
<!-- 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>
|
|
|
|
|
2011-09-21 19:42:44 +02:00
|
|
|
<build>
|
|
|
|
<defaultGoal>clean package</defaultGoal>
|
|
|
|
<plugins>
|
|
|
|
<!-- Compiler -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2016-11-06 11:14:10 +01:00
|
|
|
<version>3.5.1</version>
|
2011-09-21 19:42:44 +02:00
|
|
|
<configuration>
|
2016-11-19 21:02:19 +01:00
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
2011-09-21 19:42:44 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
|
|
|
<artifactId>maven-replacer-plugin</artifactId>
|
2016-11-06 11:14:10 +01:00
|
|
|
<version>1.4.1</version>
|
2011-09-21 19:42:44 +02:00
|
|
|
<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>
|
2011-12-11 23:03:29 +01:00
|
|
|
<value>${project.version}-b${project.build.number}</value>
|
2011-09-21 19:42:44 +02:00
|
|
|
</replacement>
|
|
|
|
</replacements>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<!-- Jar Plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2016-11-06 11:14:10 +01:00
|
|
|
<version>3.0.2</version>
|
2011-09-21 19:42:44 +02:00
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestEntries>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2011-12-10 03:58:11 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2016-11-06 11:14:10 +01:00
|
|
|
<version>2.19.1</version>
|
2011-12-10 03:58:11 +01:00
|
|
|
<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>
|
2016-11-06 11:14:10 +01:00
|
|
|
<version>2.19.1</version>
|
2011-12-10 03:58:11 +01:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
2011-12-11 01:44:11 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
2016-11-06 11:14:10 +01:00
|
|
|
<version>2.17</version>
|
2011-12-11 01:44:11 +01:00
|
|
|
<configuration>
|
|
|
|
<enableRulesSummary>true</enableRulesSummary>
|
|
|
|
<configLocation>${project.basedir}/config/mv_checks.xml</configLocation>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2012-08-03 19:28:32 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2016-11-06 11:14:10 +01:00
|
|
|
<version>3.0.1</version>
|
2012-08-03 19:28:32 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2016-11-06 11:14:10 +01:00
|
|
|
<version>2.10.4</version>
|
2012-08-03 19:28:32 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>javadoc-jar</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
2016-11-06 11:14:10 +01:00
|
|
|
<configuration>
|
|
|
|
<failOnError>false</failOnError>
|
|
|
|
</configuration>
|
2012-08-03 19:28:32 +02:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2012-01-31 20:49:55 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2016-11-06 11:14:10 +01:00
|
|
|
<version>2.4.3</version>
|
2012-01-31 20:49:55 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>me.main__.util:SerializationConfig</include>
|
2012-02-02 05:44:15 +01:00
|
|
|
<include>com.pneumaticraft.commandhandler:CommandHandler</include>
|
2012-07-26 04:09:28 +02:00
|
|
|
<include>com.dumptruckman.minecraft:buscript</include>
|
2014-02-07 16:49:45 +01:00
|
|
|
<include>org.mcstats.bukkit:metrics</include>
|
2012-10-17 20:23:00 +02:00
|
|
|
<include>com.dumptruckman.minecraft:Logging</include>
|
2016-03-12 23:10:07 +01:00
|
|
|
<include>org.codehaus.jettison:jettison</include>
|
2012-01-31 20:49:55 +01:00
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
2012-02-02 03:37:33 +01:00
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>me.main__.util</pattern>
|
|
|
|
<shadedPattern>me.main__.util.multiverse</shadedPattern>
|
|
|
|
</relocation>
|
2012-02-02 05:44:15 +01:00
|
|
|
<relocation>
|
|
|
|
<pattern>com.pneumaticraft.commandhandler</pattern>
|
|
|
|
<shadedPattern>com.pneumaticraft.commandhandler.multiverse</shadedPattern>
|
|
|
|
</relocation>
|
2012-07-26 04:09:28 +02:00
|
|
|
<relocation>
|
|
|
|
<pattern>buscript</pattern>
|
|
|
|
<shadedPattern>buscript.multiverse</shadedPattern>
|
|
|
|
</relocation>
|
2012-07-12 17:23:11 +02:00
|
|
|
<relocation>
|
|
|
|
<pattern>org.mcstats</pattern>
|
|
|
|
<shadedPattern>org.mcstats.multiverse</shadedPattern>
|
|
|
|
</relocation>
|
2012-10-17 20:23:00 +02:00
|
|
|
<relocation>
|
|
|
|
<pattern>com.dumptruckman.minecraft.util.Logging</pattern>
|
|
|
|
<shadedPattern>com.onarandombox.MultiverseCore.utils.CoreLogging</shadedPattern>
|
|
|
|
</relocation>
|
2012-10-19 03:19:33 +02:00
|
|
|
<relocation>
|
|
|
|
<pattern>com.dumptruckman.minecraft.util.DebugLog</pattern>
|
2012-10-19 03:39:43 +02:00
|
|
|
<shadedPattern>com.onarandombox.MultiverseCore.utils.DebugFileLogger</shadedPattern>
|
2012-10-19 03:19:33 +02:00
|
|
|
</relocation>
|
2016-03-12 23:10:07 +01:00
|
|
|
<relocation>
|
|
|
|
<pattern>org.codehaus.jettison.json</pattern>
|
|
|
|
<shadedPattern>org.codehaus.jettison.json.multiverse</shadedPattern>
|
|
|
|
</relocation>
|
2012-02-02 03:37:33 +01:00
|
|
|
</relocations>
|
2012-01-31 20:49:55 +01:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
2013-03-11 20:35:05 +01:00
|
|
|
<execution>
|
|
|
|
<id>apache-commons-io</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
2014-08-21 19:14:14 +02:00
|
|
|
<include>commons-io:commons-io</include>
|
2013-03-11 20:35:05 +01:00
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.apache.commons</pattern>
|
|
|
|
<shadedPattern>org.apache.commons.multiverse</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
|
|
|
<minimizeJar>true</minimizeJar>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2012-01-31 20:49:55 +01:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
2011-09-21 19:42:44 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
2013-03-11 20:35:05 +01:00
|
|
|
<dependency>
|
2014-08-21 19:14:14 +02:00
|
|
|
<groupId>commons-io</groupId>
|
2013-03-11 20:35:05 +01:00
|
|
|
<artifactId>commons-io</artifactId>
|
2014-08-21 19:14:14 +02:00
|
|
|
<version>2.4</version>
|
2013-03-11 20:35:05 +01:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-01-30 13:01:53 +01:00
|
|
|
<!--Spigot API-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2016-11-06 11:14:10 +01:00
|
|
|
<version>1.10.2-R0.1-SNAPSHOT</version>
|
2016-03-02 17:33:39 +01:00
|
|
|
<scope>compile</scope>
|
2016-01-30 13:01:53 +01:00
|
|
|
</dependency>
|
|
|
|
<!--Spigot API-->
|
2012-03-17 12:27:50 +01:00
|
|
|
<!-- Start of Spout (disabled because we aren't using it)
|
2011-11-26 08:35:07 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.getspout</groupId>
|
2011-12-13 04:08:04 +01:00
|
|
|
<artifactId>spoutpluginapi</artifactId>
|
2011-11-26 08:35:07 +01:00
|
|
|
<version>dev-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2012-03-17 12:27:50 +01:00
|
|
|
End of Spout -->
|
2012-01-31 20:49:55 +01:00
|
|
|
<!-- SerializationConfig Dependency -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.main__.util</groupId>
|
|
|
|
<artifactId>SerializationConfig</artifactId>
|
2012-11-13 19:39:22 +01:00
|
|
|
<version>1.7</version>
|
2012-01-31 20:49:55 +01:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- End of SerializationConfig Dependency -->
|
2012-10-21 02:43:58 +02:00
|
|
|
<!-- Start of Economy Dependency -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
2015-10-29 01:10:03 +01:00
|
|
|
<artifactId>VaultAPI</artifactId>
|
|
|
|
<version>1.5</version>
|
2012-10-21 02:43:58 +02:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- End of Economy Dependency -->
|
2012-02-02 05:44:15 +01:00
|
|
|
<!-- Start of CommandHandler Dependency -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.pneumaticraft.commandhandler</groupId>
|
|
|
|
<artifactId>CommandHandler</artifactId>
|
2016-11-19 21:02:19 +01:00
|
|
|
<version>10</version>
|
2012-02-02 05:44:15 +01:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- End of CommandHandler Dependency -->
|
2012-07-26 04:09:28 +02:00
|
|
|
<!-- Start of Buscript Dependency -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.dumptruckman.minecraft</groupId>
|
|
|
|
<artifactId>buscript</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- End of Buscript Dependency -->
|
2012-07-12 17:23:11 +02:00
|
|
|
<!-- Start of Metrics Dependency -->
|
|
|
|
<dependency>
|
2014-02-07 04:22:06 +01:00
|
|
|
<groupId>org.mcstats.bukkit</groupId>
|
2012-07-12 17:23:11 +02:00
|
|
|
<artifactId>metrics</artifactId>
|
2016-03-01 02:04:26 +01:00
|
|
|
<version>R8-SNAPSHOT</version>
|
2012-07-12 17:23:11 +02:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
2015-10-23 18:36:54 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2012-07-12 17:23:11 +02:00
|
|
|
</dependency>
|
|
|
|
<!-- End of Metrics Dependency -->
|
2012-10-17 20:23:00 +02:00
|
|
|
<!-- Start of Logging Dependency -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.dumptruckman.minecraft</groupId>
|
|
|
|
<artifactId>Logging</artifactId>
|
2012-10-25 19:56:57 +02:00
|
|
|
<version>1.0.9</version>
|
2012-10-17 20:23:00 +02:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
2015-10-16 01:07:44 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2012-10-17 20:23:00 +02:00
|
|
|
</dependency>
|
|
|
|
<!-- End of Logging Dependency -->
|
2016-03-12 23:10:07 +01:00
|
|
|
<!-- Start of JSON dependency -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.jettison</groupId>
|
|
|
|
<artifactId>jettison</artifactId>
|
2016-11-06 11:14:10 +01:00
|
|
|
<version>1.3.8</version>
|
2016-03-12 23:10:07 +01:00
|
|
|
</dependency>
|
|
|
|
<!-- End of JSON dependency -->
|
2011-10-15 15:47:07 +02:00
|
|
|
<!-- Start of Test Dependencies -->
|
2011-09-21 19:42:44 +02:00
|
|
|
<dependency>
|
2011-12-07 06:16:42 +01:00
|
|
|
<groupId>junit</groupId>
|
2011-09-21 19:42:44 +02:00
|
|
|
<artifactId>junit</artifactId>
|
2016-11-06 11:14:10 +01:00
|
|
|
<version>4.12</version>
|
2011-09-21 19:42:44 +02:00
|
|
|
</dependency>
|
2011-10-15 15:47:07 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-module-junit4</artifactId>
|
2016-11-06 11:14:10 +01:00
|
|
|
<version>1.6.5</version>
|
2011-10-15 15:47:07 +02:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-api-easymock</artifactId>
|
2016-11-06 11:14:10 +01:00
|
|
|
<version>1.6.5</version>
|
2011-10-15 15:47:07 +02:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-api-mockito</artifactId>
|
2016-11-06 11:14:10 +01:00
|
|
|
<version>1.6.6</version>
|
2011-10-15 15:47:07 +02:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
<artifactId>easymock</artifactId>
|
2016-11-06 11:14:10 +01:00
|
|
|
<version>3.4</version>
|
2011-10-15 15:47:07 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- End of Test Dependencies -->
|
2011-09-21 19:42:44 +02:00
|
|
|
</dependencies>
|
2011-12-12 03:09:58 +01:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
2016-05-03 16:58:30 +02:00
|
|
|
<id>OnARandomBox</id>
|
2011-12-12 03:09:58 +01:00
|
|
|
<url>http://repo.onarandombox.com/content/repositories/multiverse</url>
|
|
|
|
</repository>
|
2016-05-03 16:48:06 +02:00
|
|
|
<snapshotRepository>
|
2016-05-03 16:58:30 +02:00
|
|
|
<id>OnARandomBox</id>
|
2016-05-03 16:48:06 +02:00
|
|
|
<url>http://repo.onarandombox.com/content/repositories/multiverse-snapshots/</url>
|
|
|
|
</snapshotRepository>
|
2011-12-12 03:09:58 +01:00
|
|
|
</distributionManagement>
|
2011-07-30 23:42:31 +02:00
|
|
|
</project>
|