hosting required jars
This commit is contained in:
parent
f4db306a0f
commit
47cd386627
2 changed files with 22 additions and 12 deletions
17
README.md
17
README.md
|
@ -6,15 +6,11 @@ Required dependencies
|
|||
|
||||
* [Bukkit](https://github.com/Bukkit/Bukkit)
|
||||
|
||||
Maven Dependencies for optional integrations
|
||||
--------------------------------------------
|
||||
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/)
|
||||
|
@ -24,9 +20,6 @@ Non-Maven dependencies for optional integrations
|
|||
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
|
||||
For required development snapshots, that aren't found by maven, you have to clone the project and do:
|
||||
$ mvn install
|
||||
in the directory of the project
|
17
pom.xml
17
pom.xml
|
@ -10,6 +10,23 @@
|
|||
<developerConnection>scm:git:git@github.com:possi/LimitedCreative.git</developerConnection>
|
||||
<url>https://github.com/possi/LimitedCreative/tree/master</url>
|
||||
</scm>
|
||||
<repositories>
|
||||
<!-- Required dependencies for optional integrations, that aren't hosted yet -->
|
||||
<repository>
|
||||
<id>opt-dep</id>
|
||||
<url>http://dl.dropbox.com/u/5023975/mvn-repo</url>
|
||||
</repository>
|
||||
<!-- 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>
|
||||
</repositories>
|
||||
<build>
|
||||
<sourceDirectory>${basedir}/src</sourceDirectory>
|
||||
<plugins>
|
||||
|
|
Loading…
Reference in a new issue