next maven step

This commit is contained in:
Jascha Starke 2012-03-03 12:53:20 +01:00
parent 24d07152ab
commit 21f90d0deb
2 changed files with 46 additions and 6 deletions

View file

@ -1,11 +1,22 @@
# Limited Creative # Limited Creative
http://dev.bukkit.org/server-mods/limited-creative/ http://dev.bukkit.org/server-mods/limited-creative/
There is no automated building yet, so just use "Export..." -> "JAR file" in Eclipse Required dependencies:
* [Bukkit](https://github.com/Bukkit/Bukkit)
Dependencies: Maven Dependencies for optional integrations:
* [WorldGuard](https://github.com/sk89q/worldguard)
* [WorldEdit](https://github.com/sk89q/worldedit)
Non-Maven dependencies for optional integrations:
* [xAuth](http://dev.bukkit.org/server-mods/xauth/)
* [AuthMe](http://dev.bukkit.org/server-mods/authme-reloaded/)
* [Multiverse-Core](http://dev.bukkit.org/server-mods/multiverse-core/)
* [Craftbukkit](https://github.com/Bukkit/CraftBukkit) ----
* which implies [Bukkit](https://github.com/Bukkit/Bukkit)
* Optional: [WorldGuard](https://github.com/sk89q/worldguard) To use Maven packaging:
* which depends on [WorldEdit](https://github.com/sk89q/worldedit) You need to add the non-maven dependencies:
* download the jars and then:
* $ mvn install:install-file -Dfile=AuthMe.jar -DgroupId=uk.org.whoami -DartifactId=authme -Dversion=2.6.2 -Dpackaging=jar
* $ mvn install:install-file -Dfile=Multiverse-Core.jar -DgroupId=com.onarandombox -DartifactId=multiverse-core -Dversion=2.3-AB -Dpackaging=jar
* $ mvn install:install-file -Dfile=xAuth.jar -DgroupId=com.cypherx -DartifactId=xauth -Dversion=3.1 -Dpackaging=jar

29
pom.xml
View file

@ -10,6 +10,20 @@
<developerConnection>scm:git:git@github.com:possi/LimitedCreative.git</developerConnection> <developerConnection>scm:git:git@github.com:possi/LimitedCreative.git</developerConnection>
<url>https://github.com/possi/LimitedCreative/tree/master</url> <url>https://github.com/possi/LimitedCreative/tree/master</url>
</scm> </scm>
<build>
<sourceDirectory>${basedir}/src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.7</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.bukkit</groupId> <groupId>org.bukkit</groupId>
@ -21,6 +35,21 @@
<artifactId>worldguard</artifactId> <artifactId>worldguard</artifactId>
<version>5.5.2-SNAPSHOT</version> <version>5.5.2-SNAPSHOT</version>
</dependency> </dependency>
<dependency>
<groupId>uk.org.whoami</groupId>
<artifactId>authme</artifactId>
<version>2.6.2</version>
</dependency>
<dependency>
<groupId>com.onarandombox</groupId>
<artifactId>multiverse-core</artifactId>
<version>2.3-AB</version>
</dependency>
<dependency>
<groupId>com.cypherx</groupId>
<artifactId>xauth</artifactId>
<version>3.1</version>
</dependency>
</dependencies> </dependencies>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>