next maven step
This commit is contained in:
parent
24d07152ab
commit
21f90d0deb
2 changed files with 46 additions and 6 deletions
23
README.md
23
README.md
|
@ -1,11 +1,22 @@
|
|||
# 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)
|
||||
* which depends on [WorldEdit](https://github.com/sk89q/worldedit)
|
||||
----
|
||||
|
||||
To use Maven packaging:
|
||||
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
29
pom.xml
|
@ -10,6 +10,20 @@
|
|||
<developerConnection>scm:git:git@github.com:possi/LimitedCreative.git</developerConnection>
|
||||
<url>https://github.com/possi/LimitedCreative/tree/master</url>
|
||||
</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>
|
||||
<dependency>
|
||||
<groupId>org.bukkit</groupId>
|
||||
|
@ -21,6 +35,21 @@
|
|||
<artifactId>worldguard</artifactId>
|
||||
<version>5.5.2-SNAPSHOT</version>
|
||||
</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>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
|
|
Loading…
Reference in a new issue