summaryrefslogtreecommitdiff
path: root/TESTING.asciidoc
diff options
context:
space:
mode:
authorandrejserafim <andrejserafim@gmail.com>2015-11-02 20:14:45 +0000
committerandrejserafim <andrejserafim@gmail.com>2015-11-08 17:07:19 +0000
commit2bd353d72d7c9a31449e61d3a360821d02fd3aa0 (patch)
tree798f6b51eb6ce4ba9d836bbd603fcbdbac7a2b4c /TESTING.asciidoc
parent28015d9e0368ad227e66b6bc6fc26f2241972aa3 (diff)
replacing run.bat and run.sh with gradle run
run.sh and run.bat were calling out to the old maven build system. This is no longer in place, so we've created new gradle tasks to start an elasticsearch node from the current codebase. fixed #14423
Diffstat (limited to 'TESTING.asciidoc')
-rw-r--r--TESTING.asciidoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/TESTING.asciidoc b/TESTING.asciidoc
index 68740c2b42..c1b17e7b31 100644
--- a/TESTING.asciidoc
+++ b/TESTING.asciidoc
@@ -44,7 +44,7 @@ In order to run Elasticsearch from source without building a package, you can
run it using Maven:
-------------------------------------
-./run.sh
+gradle run
-------------------------------------
=== Test case filtering.
@@ -455,5 +455,5 @@ mvn -Dtests.coverage verify jacoco:report
== Debugging from an IDE
-If you want to run elasticsearch from your IDE, you should execute ./run.sh
+If you want to run elasticsearch from your IDE, you should execute gradle run
It opens a remote debugging port that you can connect with your IDE.