diff options
author | Stephane Gamard <stephane.gamard@searchbox.com> | 2014-07-10 18:06:32 +0200 |
---|---|---|
committer | Stephane Gamard <stephane.gamard@searchbox.com> | 2014-07-10 18:06:46 +0200 |
commit | 30bc2f00dca4af5e649117c2e50da65374526d5b (patch) | |
tree | 3cebc3a415191de210b83b4d655e28ae27eb8cb1 /server/sonar-search | |
parent | 2f7578b400c12aaee7c4dadc76183a7406ab3530 (diff) | |
download | sonarqube-30bc2f00dca4af5e649117c2e50da65374526d5b.tar.gz sonarqube-30bc2f00dca4af5e649117c2e50da65374526d5b.zip |
SONAR-4898 - Working child/parent process with ES! :)
Diffstat (limited to 'server/sonar-search')
-rw-r--r-- | server/sonar-search/pom.xml | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/server/sonar-search/pom.xml b/server/sonar-search/pom.xml index ded8c0687a5..a5b6e7fc936 100644 --- a/server/sonar-search/pom.xml +++ b/server/sonar-search/pom.xml @@ -61,4 +61,23 @@ <scope>test</scope> </dependency> </dependencies> -</project> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + </execution> + </executions> + <configuration> + <finalName>${artifactId}-${version}</finalName> + </configuration> + </plugin> + </plugins> + </build> +</project>
\ No newline at end of file |