From c4081c904b065a4f7a22bceff441986a87d2e6af Mon Sep 17 00:00:00 2001 From: Jeffrey Han Date: Thu, 27 Aug 2015 14:24:25 -0500 Subject: [PATCH] Change Gradle task 'build' to 'jar' in the readme. Signed-off-by: Jeffrey Han --- README.md | 7 ++++--- pom.xml | 7 ------- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index aac8f463..4b4e667f 100644 --- a/README.md +++ b/README.md @@ -38,19 +38,20 @@ other game options can be accessed by clicking the "Other Options" button in the song menu. ## Building -opsu! is distributed as both a Maven and Gradle project. +opsu! is distributed as both a [Maven](https://maven.apache.org/) and +[Gradle](https://gradle.org/) project. ### Maven Maven builds are built to the `target` directory. * To run the project, execute the Maven goal `compile`. -* To create a single executable JAR file, execute the Maven goal `package -Djar`. +* To create a single executable jar, execute the Maven goal `package -Djar`. This will compile a jar to `target/opsu-${version}.jar` with the libraries, resources and natives packed inside the jar. ### Gradle Gradle builds are built to the `build` directory. * To run the project, execute the Gradle task `run`. -* To create a single executable JAR file, execute the Gradle task `build`. +* To create a single executable jar, execute the Gradle task `jar`. This will compile a jar to `build/libs/opsu-${version}.jar` with the libraries, resources and natives packed inside the jar. diff --git a/pom.xml b/pom.xml index ca910302..72e1f62e 100644 --- a/pom.xml +++ b/pom.xml @@ -82,13 +82,6 @@ maven-shade-plugin 2.4.1 -