# Can't get 5.0.0-alpha5 from Maven

**URL:** https://discuss.elastic.co/t/cant-get-5-0-0-alpha5-from-maven/58726
**Category:** Elasticsearch
**Created:** [August 23, 2016, 6:05pm UTC](https://discuss.elastic.co/t/cant-get-5-0-0-alpha5-from-maven/58726 "2016-08-23T18:05:03Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![jaymode](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/jaymode/32/50103_2.png) [@jaymode](https://discuss.elastic.co/u/jaymode)
#### Post date: [August 24, 2016, 11:58am UTC](https://discuss.elastic.co/t/cant-get-5-0-0-alpha5-from-maven/58726/2 "2016-08-24T11:58:46Z")

</div>

Hi Robert,

The XPackTransportClient is new in alpha 5. It looks like there is a bug in the generated pom file for alpha5:

```
<dependency>
  <groupId>org.elasticsearch.plugin</groupId>
  <artifactId>transport-netty4-client-client</artifactId>
  <version>5.0.0-alpha5</version>
  <scope>compile</scope>
</dependency>

```

That dependency should just be `transport-netty4-client`, which is published to maven central. In your build, can you manually exclude the bad dependency and add one for the correct one, which would be (for maven):

```
<dependency>
  <groupId>org.elasticsearch.plugin</groupId>
  <artifactId>transport-netty4-client</artifactId>
  <version>5.0.0-alpha5</version>
  <scope>compile</scope>
</dependency>
```

---

_[View the full topic](https://discuss.elastic.co/t/cant-get-5-0-0-alpha5-from-maven/58726)._
