From 1e65556b00a750aca1d1baca290b4b2733321228 Mon Sep 17 00:00:00 2001 From: asofold Date: Sun, 13 Mar 2016 23:41:31 +0100 Subject: [PATCH] Put the table last. --- README.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 9b3aa44c..c4fb9997 100644 --- a/README.md +++ b/README.md @@ -20,13 +20,6 @@ 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`, if you don't want any dedicated CraftBukkit modules, or if you are lacking the jar files. If you do have all the dependencies, you can set the parameter `cbdedicated` to `true` and activate the profile `all` adding `-P all` to the goals (e.g. on Jenkins, for some setups setting the property may suffice). For more options, see the table below. If you want to build only using the compat module for your current server version, you can remove all the unneeded module references from the root pom.xml and the corresponding dependencies from NCPPlugin/pom.xml. Custom modules not put under the group id `fr.neatmonster` might need to be added to the `includes` section in NoCheatPlus/pom.xml as well. -* All profiles for reference: - | Profile | Parameter set to `true` | Description | - | `-P minimal` | _default_ | Default profile without native access modules. | - | `-P all` | `cbdedicated` | All compat modules. | - | `-P spigot1_8_r3` | `spigot1_8_r3` | Just Spigot 1.8_R3. | - | `-P spigot1_9_r1` | `spigot1_9_r1` | Just Spigot 1.9_R1. | - | `-P cbdev` | `cbdev` | Only the dev-module, usually the latest. Might get removed on very stable versions, in favor of a dedicated module (!). | * Jar files for the dedicated compat modules, which your local maven repository might be missing, can also be installed manually. Example for Eclipse with embedded maven: Add a new maven build run configuration, name it appropriately, e.g. ```Install CB 1.7.5```. @@ -36,6 +29,15 @@ To let it run you might have to set the base directory, e.g. to ```${workspace_l 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. * NoCheatPlus is compiled for Java 6. +All profiles for reference: +| Profile | Parameter set to `true` | Description | +| :------ | :----------------------- | :---------- | +| `-P minimal` | _default_ | Default profile without native access modules. | +| `-P all` | `cbdedicated` | All compat modules. | +| `-P spigot1_8_r3` | `spigot1_8_r3` | Just Spigot 1.8_R3. | +| `-P spigot1_9_r1` | `spigot1_9_r1` | Just Spigot 1.9_R1. | +| `-P cbdev` | `cbdev` | Only the dev-module, usually the latest. Might get removed on very stable versions, in favor of a dedicated module (!). | + Links ---------