Github user justinleet commented on a diff in the pull request:
https://github.com/apache/metron/pull/946#discussion_r171614360
--- Diff: metron-platform/elasticsearch-shaded/pom.xml ---
@@ -31,7 +43,7 @@
</dependency>
<dependency>
<groupId>org.elasticsearch.client</groupId>
- <artifactId>transport</artifactId>
+ <artifactId>x-pack-transport</artifactId>
--- End diff --
Unlike the plain transport client, this jar is NOT Apache licensed. I
pulled it down and it has this
```
<artifactId>x-pack-transport</artifactId>
<version>5.6.7</version>
...
<licenses>
<license>
<name>Elastic Commercial Software End User License Agreement</name>
<url>https://www.elastic.co/eula/</url>
<distribution>repo</distribution>
</license>
</licenses>
```
---