# Unable to get x-pack-api-5.5.3.jar

**URL:** https://discuss.elastic.co/t/unable-to-get-x-pack-api-5-5-3-jar/123680
**Category:** Elasticsearch
**Created:** [March 13, 2018, 6:22am UTC](https://discuss.elastic.co/t/unable-to-get-x-pack-api-5-5-3-jar/123680 "2018-03-13T06:22:47Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![PinkiMondal](https://avatars.discourse-cdn.com/v4/letter/p/a698b9/32.png) [@PinkiMondal](https://discuss.elastic.co/u/PinkiMondal)
#### Post date: [March 13, 2018, 6:22am UTC](https://discuss.elastic.co/t/unable-to-get-x-pack-api-5-5-3-jar/123680/1 "2018-03-13T06:22:47Z")

</div>

Hi I am want to download x-pack-api-5.5.3.jar but it is giving me error while downloading it using POM  
And I am unable to find the jar for download  
I got x-pack-transport-5.5.3.jar from [https://www.elastic.co/guide/en/x-pack/5.5/api-java.html](https://www.elastic.co/guide/en/x-pack/5.5/api-java.html)

Kindly tell me link or other ways to download the x-pack-api-5.5.3.jar

---

<div class="post-metadata">

### Author: ![dadoonet](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/dadoonet/32/137187_2.png) [@dadoonet](https://discuss.elastic.co/u/dadoonet)
#### Post date: [March 13, 2018, 6:36am UTC](https://discuss.elastic.co/t/unable-to-get-x-pack-api-5-5-3-jar/123680/2 "2018-03-13T06:36:06Z")

</div>

What does your `pom.xml` look like?

---

<div class="post-metadata">

### Author: ![PinkiMondal](https://avatars.discourse-cdn.com/v4/letter/p/a698b9/32.png) [@PinkiMondal](https://discuss.elastic.co/u/PinkiMondal)
#### Post date: [March 13, 2018, 6:51am UTC](https://discuss.elastic.co/t/unable-to-get-x-pack-api-5-5-3-jar/123680/3 "2018-03-13T06:51:06Z")

</div>

```
<properties>
	<es.version>5.5.3</es.version><!--5.4.1 -->
	<versions.lucene>6.6.0</versions.lucene><!-- 6.4.2 -->
	<versions.log4j>2.8.2</versions.log4j>
</properties>

<dependencies>
	<dependency>
		<groupId>org.elasticsearch</groupId>
		<artifactId>elasticsearch</artifactId>
		<version>${es.version}</version>
		<!-- <scope>provided</scope> -->
	</dependency>

	<dependency>
		<groupId>org.elasticsearch.plugin</groupId>
		<artifactId>x-pack-api</artifactId>
		<version>${es.version}</version>
		<!-- <scope>provided</scope> -->
	</dependency>
	<dependency>
		<groupId>org.elasticsearch</groupId>
		<artifactId>jna</artifactId>
		<version>4.4.0</version>
		<!-- <scope>provided</scope> -->
	</dependency>
	<dependency>
		<groupId>org.elasticsearch.test</groupId>
		<artifactId>framework</artifactId>
		<version>${es.version}</version>
	</dependency>

	<dependency>
		<groupId>org.elasticsearch.client</groupId>
		<artifactId>x-pack-transport</artifactId>
		<version>${es.version}</version>
	</dependency>
	
	<dependency>
		<groupId>org.apache.lucene</groupId>
		<artifactId>lucene-test-framework</artifactId>
		<version>${versions.lucene}</version>
	</dependency>
```

---

<div class="post-metadata">

### Author: ![TimV](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/timv/32/13162_2.png) [@TimV](https://discuss.elastic.co/u/TimV)
#### Post date: [March 13, 2018, 6:53am UTC](https://discuss.elastic.co/t/unable-to-get-x-pack-api-5-5-3-jar/123680/4 "2018-03-13T06:53:55Z")

</div>

Have you included the `artifacts.elastic.co/maven` repository as described in the documentation (that you linked to)?

It isn't shown in the POM you just pasted.

---

<div class="post-metadata">

### Author: ![PinkiMondal](https://avatars.discourse-cdn.com/v4/letter/p/a698b9/32.png) [@PinkiMondal](https://discuss.elastic.co/u/PinkiMondal)
#### Post date: [March 13, 2018, 6:54am UTC](https://discuss.elastic.co/t/unable-to-get-x-pack-api-5-5-3-jar/123680/5 "2018-03-13T06:54:48Z")

</div>

```
<repositories>
	<repository>
		<id>elasticsearch-releases</id>
		<url>https://artifacts.elastic.co/maven</url>
		<releases>
			<enabled>true</enabled>
		</releases>
		<snapshots>
			<enabled>true</enabled>
		</snapshots>
	</repository>
</repositories>
<pluginRepositories>
	<pluginRepository>
		<releases>
			<updatePolicy>never</updatePolicy>
		</releases>
		<snapshots>
			<enabled>false</enabled>
		</snapshots>
		<id>central</id>
		<name>Central Repository</name>
		<url>http://repo.maven.apache.org/maven2</url>
	</pluginRepository>
</pluginRepositories>
```

---

<div class="post-metadata">

### Author: ![TimV](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/timv/32/13162_2.png) [@TimV](https://discuss.elastic.co/u/TimV)
#### Post date: [March 13, 2018, 8:37am UTC](https://discuss.elastic.co/t/unable-to-get-x-pack-api-5-5-3-jar/123680/6 "2018-03-13T08:37:35Z")

</div>

What error are you getting?  
I just pasted your snippets into a clean POM file and everything downloaded OK:

```auto
Downloading: https://artifacts.elastic.co/maven/org/elasticsearch/elasticsearch/5.5.3/elasticsearch-5.5.3.pom
Downloaded: https://artifacts.elastic.co/maven/org/elasticsearch/elasticsearch/5.5.3/elasticsearch-5.5.3.pom (13 KB at 5.6 KB/sec)
Downloading: https://artifacts.elastic.co/maven/org/elasticsearch/plugin/x-pack-api/5.5.3/x-pack-api-5.5.3.pom
Downloaded: https://artifacts.elastic.co/maven/org/elasticsearch/plugin/x-pack-api/5.5.3/x-pack-api-5.5.3.pom (6 KB at 9.3 KB/sec)
...
Downloading: https://artifacts.elastic.co/maven/org/elasticsearch/plugin/x-pack-api/5.5.3/x-pack-api-5.5.3.jar
...
Downloaded: https://artifacts.elastic.co/maven/org/elasticsearch/plugin/x-pack-api/5.5.3/x-pack-api-5.5.3.jar (3558 KB at 435.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/elasticsearch/elasticsearch/5.5.3/elasticsearch-5.5.3.jar
...
Downloaded: https://repo.maven.apache.org/maven2/org/elasticsearch/elasticsearch/5.5.3/elasticsearch-5.5.3.jar (9805 KB at 1330.7 KB/sec)
```

---

<div class="post-metadata">

### Author: ![PinkiMondal](https://avatars.discourse-cdn.com/v4/letter/p/a698b9/32.png) [@PinkiMondal](https://discuss.elastic.co/u/PinkiMondal)
#### Post date: [March 13, 2018, 9:03am UTC](https://discuss.elastic.co/t/unable-to-get-x-pack-api-5-5-3-jar/123680/7 "2018-03-13T09:03:16Z")

</div>

Okay let me look into it thanks

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [April 10, 2018, 9:03am UTC](https://discuss.elastic.co/t/unable-to-get-x-pack-api-5-5-3-jar/123680/8 "2018-04-10T09:03:34Z")

</div>

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
