diff --git a/NCPCompatCBDev/pom.xml b/NCPCompatCBDev/pom.xml index 2c4da55f..d94e4169 100644 --- a/NCPCompatCBDev/pom.xml +++ b/NCPCompatCBDev/pom.xml @@ -22,12 +22,12 @@ org.bukkit craftbukkit - 1.7.8-R0.1-SNAPSHOT + 1.7.9-R0.2 org.bukkit bukkit - 1.7.8-R0.1-SNAPSHOT + 1.7.9-R0.2 diff --git a/NCPPlugin/src/main/java/fr/neatmonster/nocheatplus/compat/MCAccessFactory.java b/NCPPlugin/src/main/java/fr/neatmonster/nocheatplus/compat/MCAccessFactory.java index e68a6799..fcff320c 100644 --- a/NCPPlugin/src/main/java/fr/neatmonster/nocheatplus/compat/MCAccessFactory.java +++ b/NCPPlugin/src/main/java/fr/neatmonster/nocheatplus/compat/MCAccessFactory.java @@ -57,7 +57,7 @@ public class MCAccessFactory { // TEMP // // Only add as long as no stable module has been added. - // 1.7.8 + // 1.7.8|1.7.9 try{ return new MCAccessCBDev(); } diff --git a/README.md b/README.md index b291af1c..dd77006d 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,13 @@ Compiling NoCheatPlus * We use [Maven] (http://maven.apache.org/download.cgi) 3 to handle the dependencies. * You can compile it with this Maven goal: `mvn clean package` * NoCheatPlus is compiled for Java 6. +* If you run into trouble with dependencies, because they have been removed from the repository for obscure reasons, or if the repository prevents you from accessing it, you can install the dependency manually.\\ +Example for Eclipse with embedded maven:\\ +Add a new maven build run configuration, name it appropriately, e.g. {{{Install CB 1.7.5}}}. +Set goals to: {{{install:install-file -Dfile= -DgroupId=org.bukkit -DartifactId=craftbukkit -Dversion=1.7.5-R0.1-SNAPSHOT -Dpackaging=jar}}}\\ +On Windows the might look like: {{{X:\...\craftbukkit\3042\craftbukkit-1.7.5-R0.1-20140408.020329-16.jar}}}\\ +To let it run you might have to set the base directory, e.g. to {{{ ${workspace_loc} }}}, it does not seem to have significance.\\ +Do set the correct version alongside the file name. On newer version of maven, you might do with much simplified goals, because the pom inside the jars are parsed. Links ---------