2012-03-03 10:42:14 +00:00
|
|
|
<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>
|
2012-03-16 16:41:27 +00:00
|
|
|
<groupId>de.jaschastarke</groupId>
|
2012-03-03 10:42:14 +00:00
|
|
|
<artifactId>LimitedCreative</artifactId>
|
|
|
|
<name>LimitedCreative</name>
|
2013-01-29 21:31:01 +00:00
|
|
|
<version>1.4.7b</version>
|
2012-03-03 10:42:14 +00:00
|
|
|
<url>https://github.com/possi/LimitedCreative</url>
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git://github.com/possi/LimitedCreative.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:possi/LimitedCreative.git</developerConnection>
|
|
|
|
<url>https://github.com/possi/LimitedCreative/tree/master</url>
|
|
|
|
</scm>
|
2012-03-03 14:35:33 +00:00
|
|
|
<repositories>
|
2012-12-22 22:14:14 +00:00
|
|
|
<!-- Possible public Maven Repository, containing LimitedCreative builds and other dependencies without own rep.
|
|
|
|
like AuthMe, etc.
|
|
|
|
Supports http & https -->
|
2012-12-15 11:21:15 +00:00
|
|
|
<repository>
|
2012-12-22 22:14:14 +00:00
|
|
|
<id>de-jas-mvn</id>
|
2012-12-15 11:21:15 +00:00
|
|
|
<url>https://repository-possi.forge.cloudbees.com/release</url>
|
|
|
|
</repository>
|
2012-12-22 22:14:14 +00:00
|
|
|
|
2012-03-03 14:35:33 +00:00
|
|
|
<!-- Official (Craft-)Bukkit repository -->
|
|
|
|
<repository>
|
|
|
|
<id>bukkit-repo</id>
|
|
|
|
<url>http://repo.bukkit.org/content/groups/public</url>
|
|
|
|
</repository>
|
|
|
|
<!-- Official WorldGuard and WorldEdit repository -->
|
|
|
|
<repository>
|
|
|
|
<id>sk89q-mvn2</id>
|
|
|
|
<url>http://mvn2.sk89q.com/repo</url>
|
|
|
|
</repository>
|
2012-03-16 15:37:43 +00:00
|
|
|
<!-- Official Multiverse repository -->
|
|
|
|
<repository>
|
|
|
|
<id>onarandombox</id>
|
|
|
|
<url>http://repo.onarandombox.com/content/groups/public</url>
|
|
|
|
</repository>
|
2012-12-22 22:14:14 +00:00
|
|
|
<!-- Official Vault repository -->
|
2012-11-12 22:22:18 +00:00
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
|
|
|
<url>http://ci.herocraftonline.com/plugin/repository/everything</url>
|
|
|
|
</repository>
|
2012-12-22 22:14:14 +00:00
|
|
|
<!-- Official xAuth repository; it is no good! we keep our own dep-files of it - ->
|
|
|
|
<repository>
|
|
|
|
<id>luricos.de-repo</id>
|
|
|
|
<url>http://repo.luricos.de/bukkit-plugins/</url>
|
|
|
|
</repository><!- - -->
|
2012-03-03 14:35:33 +00:00
|
|
|
</repositories>
|
2012-03-03 11:53:20 +00:00
|
|
|
<build>
|
|
|
|
<sourceDirectory>${basedir}/src</sourceDirectory>
|
2012-03-16 16:41:27 +00:00
|
|
|
<finalName>${project.artifactId}</finalName>
|
2012-03-16 15:37:43 +00:00
|
|
|
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<targetPath>.</targetPath>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>${basedir}/</directory>
|
|
|
|
<includes>
|
|
|
|
<include>plugin.yml</include>
|
|
|
|
<include>config.yml</include>
|
2013-01-29 21:31:01 +00:00
|
|
|
<include>settings.properties</include>
|
2012-03-16 15:37:43 +00:00
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<targetPath>lang/</targetPath>
|
|
|
|
<directory>${basedir}/lang/</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
|
2012-03-03 11:53:20 +00:00
|
|
|
<plugins>
|
2012-03-23 15:20:42 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.0.2</version>
|
|
|
|
<configuration>
|
2012-07-14 19:18:30 +00:00
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
2012-03-23 15:20:42 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2012-03-03 11:53:20 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2012-03-03 10:42:14 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
2013-01-29 21:31:01 +00:00
|
|
|
<version>1.4.7-R0.1</version>
|
2012-03-03 10:42:14 +00:00
|
|
|
</dependency>
|
2012-12-07 19:03:15 +00:00
|
|
|
<dependency>
|
2013-01-18 08:00:04 +00:00
|
|
|
<!-- http://dl.bukkit.org/ -->
|
2012-12-07 19:03:15 +00:00
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
2013-01-29 21:31:01 +00:00
|
|
|
<version>1.4.7-R0.1</version>
|
2012-12-15 11:21:15 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-01-18 08:00:04 +00:00
|
|
|
<!-- http://dev.bukkit.org/server-mods/worldedit/ -->
|
2012-12-15 11:21:15 +00:00
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>worldedit</artifactId>
|
2013-01-18 08:00:04 +00:00
|
|
|
<version>5.5</version>
|
2012-12-15 11:21:15 +00:00
|
|
|
<scope>compile</scope>
|
2012-12-07 19:03:15 +00:00
|
|
|
</dependency>
|
2012-03-03 10:42:14 +00:00
|
|
|
<dependency>
|
2013-01-18 08:00:04 +00:00
|
|
|
<!-- http://dev.bukkit.org/server-mods/worldguard/ -->
|
2012-03-03 10:42:14 +00:00
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>worldguard</artifactId>
|
2013-01-18 08:00:04 +00:00
|
|
|
<version>5.7</version>
|
2012-03-03 10:42:14 +00:00
|
|
|
</dependency>
|
2012-03-03 11:53:20 +00:00
|
|
|
<dependency>
|
2013-01-18 08:00:04 +00:00
|
|
|
<!-- http://dev.bukkit.org/server-mods/authme-reloaded/ -->
|
2012-03-03 11:53:20 +00:00
|
|
|
<groupId>uk.org.whoami</groupId>
|
|
|
|
<artifactId>authme</artifactId>
|
2013-01-18 08:00:04 +00:00
|
|
|
<version>2.7.2</version>
|
2012-03-03 11:53:20 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-01-18 08:00:04 +00:00
|
|
|
<!-- http://dev.bukkit.org/server-mods/multiverse-core/ -->
|
2012-03-16 15:37:43 +00:00
|
|
|
<groupId>com.onarandombox.multiversecore</groupId>
|
|
|
|
<artifactId>Multiverse-Core</artifactId>
|
|
|
|
<version>2.4</version>
|
2012-03-03 11:53:20 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-01-18 08:00:04 +00:00
|
|
|
<!-- http://dev.bukkit.org/server-mods/xauth/ -->
|
2012-03-03 11:53:20 +00:00
|
|
|
<groupId>com.cypherx</groupId>
|
|
|
|
<artifactId>xauth</artifactId>
|
2012-12-22 22:14:14 +00:00
|
|
|
<version>2.0.26</version>
|
2012-03-03 11:53:20 +00:00
|
|
|
</dependency>
|
2012-03-03 10:42:14 +00:00
|
|
|
</dependencies>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
</project>
|