diff --git a/distribution/pom.xml b/distribution/pom.xml index 409799b798e..48f6c739d2e 100644 --- a/distribution/pom.xml +++ b/distribution/pom.xml @@ -47,7 +47,7 @@ exec-maven-plugin - install + package exec @@ -106,7 +106,7 @@ distro-assembly - install + package single @@ -120,7 +120,7 @@ mysql-distro-assembly - install + package single diff --git a/docs/content/development/build.md b/docs/content/development/build.md index d1a8eecaf90..ac3f96e16d0 100644 --- a/docs/content/development/build.md +++ b/docs/content/development/build.md @@ -17,7 +17,7 @@ To do so, run these commands: ``` git clone git@github.com:druid-io/druid.git cd druid -mvn clean install +mvn clean package ``` This will compile the project and create the Druid binary distribution tar under diff --git a/pom.xml b/pom.xml index cacd1aad2a5..2b3273e8c3b 100644 --- a/pom.xml +++ b/pom.xml @@ -650,6 +650,14 @@ org.apache.maven.plugins maven-install-plugin 2.3.1 + + + package + + install + + + org.apache.maven.plugins