https://github.com/elastic/elasticsearch
Revision c0c1ba0c583e59d82fa980dc41f801ac2637fd47 authored by Clinton Gormley on 12 December 2017, 10:10:14 UTC, committed by Clinton Gormley on 12 December 2017, 10:10:14 UTC
This reverts commit 4af3ef8e6661e4bd86ff16657b64b1f076c33a83.
1 parent 4af3ef8
Raw File
Tip revision: c0c1ba0c583e59d82fa980dc41f801ac2637fd47 authored by Clinton Gormley on 12 December 2017, 10:10:14 UTC
Revert "Mark 6.1.0 as released in docs"
Tip revision: c0c1ba0
GRADLE.CHEATSHEET
As a quick helper, below are the equivalent commands from maven to gradle (TESTING.md has also been updated). You can also run "gradle tasks" to see all tasks that are available to run.
clean -> clean
test -> test
verify -> check
verify -Dskip.unit.tests -> integTest
package -DskipTests -> assemble
install -DskipTests -> publishToMavenLocal
back to top