diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2017-09-07 15:23:27 +0200 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2017-09-13 15:50:55 +0200 |
commit | 46cea1eed83a0abe5b1fd7f50efb6f3b367ed43b (patch) | |
tree | 77c62cc14d677c34e33576cbcad329bce0648b86 /pom.xml | |
parent | bc792b361a54b02e89fbcb1f22a7c90391bf2d53 (diff) | |
download | sonarqube-46cea1eed83a0abe5b1fd7f50efb6f3b367ed43b.tar.gz sonarqube-46cea1eed83a0abe5b1fd7f50efb6f3b367ed43b.zip |
SONAR-9587 exclude non used ES modules from distribution zip
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -715,6 +715,16 @@ <groupId>org.elasticsearch.client</groupId> <artifactId>transport</artifactId> <version>${elasticsearch.version}</version> + <exclusions> + <exclusion> + <groupId>org.elasticsearch.plugin</groupId> + <artifactId>lang-mustache-client</artifactId> + </exclusion> + <exclusion> + <groupId>org.elasticsearch.plugin</groupId> + <artifactId>transport-netty3-client</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>com.github.tlrx</groupId> |