# Java.lang.NoClassDefFoundError: org.elasticsearch.common.settings.ImmutableSettings

**URL:** https://discuss.elastic.co/t/java-lang-noclassdeffounderror-org-elasticsearch-common-settings-immutablesettings/21940
**Category:** Elasticsearch
**Created:** [February 1, 2015, 4:41pm UTC](https://discuss.elastic.co/t/java-lang-noclassdeffounderror-org-elasticsearch-common-settings-immutablesettings/21940 "2015-02-01T16:41:46Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![4m7u1](https://avatars.discourse-cdn.com/v4/letter/4/8e7dd6/32.png) [@4m7u1](https://discuss.elastic.co/u/4m7u1)
#### Post date: [February 1, 2015, 4:41pm UTC](https://discuss.elastic.co/t/java-lang-noclassdeffounderror-org-elasticsearch-common-settings-immutablesettings/21940/1 "2015-02-01T16:41:46Z")

</div>

I have a custom method for indexing data into elasticsearch. When i run  
this, i get the error as :\* java.lang.NoClassDefFoundError:  
org.elasticsearch.common.settings.ImmutableSettings\*  
I have included all the required libraries.

public void insertIntoElasticsearch(String JsonString, String idAttribute)  
{  
Settings settings =  
ImmutableSettings.settingsBuilder().put("http.enabled",  
"false").put("transport.tcp.port",  
"9300-9400").put("discovery.zen.ping.multicast.enabled", "false")

.put("discovery.zen.ping.unicast.hosts", "localhost").build();

```
    TransportClient client = new TransportClient(settings); 
    client.addTransportAddress(new 

```

InetSocketTransportAddress("localhost",9300));  
IndexResponse response = client.prepareIndex("dbdata",  
"type",idAttribute ).setSource(JsonString).execute().actionGet();  
String \_id = response.getId();  
System.out.println("-----id-----" + \_id + "---------");  
System.out.println("-----Insert Into Elasticsearch-----");  
}

Thanks.

--  
You received this message because you are subscribed to the Google Groups "elasticsearch" group.  
To unsubscribe from this group and stop receiving emails from it, send an email to [elasticsearch+unsubscribe@googlegroups.com](mailto:elasticsearch+unsubscribe@googlegroups.com).  
To view this discussion on the web visit [https://groups.google.com/d/msgid/elasticsearch/0557a204-ca5d-477b-8fb7-f86e8bcaf1c7%40googlegroups.com](https://groups.google.com/d/msgid/elasticsearch/0557a204-ca5d-477b-8fb7-f86e8bcaf1c7%40googlegroups.com).  
For more options, visit [https://groups.google.com/d/optout](https://groups.google.com/d/optout).

---

<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: [February 1, 2015, 6:02pm UTC](https://discuss.elastic.co/t/java-lang-noclassdeffounderror-org-elasticsearch-common-settings-immutablesettings/21940/2 "2015-02-01T18:02:18Z")

</div>

> I have included all the required libraries.  
> java.lang.NoClassDefFoundError: org.elasticsearch.common.settings.ImmutableSettings

Sounds like you did not include elasticsearch jar.

--  
David 😉  
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

> Le 1 févr. 2015 à 17:41, 4m7u1 [amtulnazneen7@gmail.com](mailto:amtulnazneen7@gmail.com) a écrit :
> 
> I have a custom method for indexing data into elasticsearch. When i run this, i get the error as : java.lang.NoClassDefFoundError: org.elasticsearch.common.settings.ImmutableSettings  
> I have included all the required libraries.
> 
> public void insertIntoElasticsearch(String JsonString, String idAttribute)  
> {  
> Settings settings = ImmutableSettings.settingsBuilder().put("http.enabled", "false").put("transport.tcp.port", "9300-9400").put("discovery.zen.ping.multicast.enabled", "false")  
> .put("discovery.zen.ping.unicast.hosts", "localhost").build();
> 
> ```
> TransportClient client = new TransportClient(settings); 
> client.addTransportAddress(new InetSocketTransportAddress("localhost",9300)); 
> IndexResponse response = client.prepareIndex("dbdata", "type",idAttribute ).setSource(JsonString).execute().actionGet();
> String _id = response.getId();
> System.out.println("-----id-----" + _id + "---------");
> System.out.println("-----Insert Into Elasticsearch-----");
> }
> 
> ```
> 
> ## Thanks.
> 
> You received this message because you are subscribed to the Google Groups "elasticsearch" group.  
> To unsubscribe from this group and stop receiving emails from it, send an email to [elasticsearch+unsubscribe@googlegroups.com](mailto:elasticsearch+unsubscribe@googlegroups.com).  
> To view this discussion on the web visit [https://groups.google.com/d/msgid/elasticsearch/0557a204-ca5d-477b-8fb7-f86e8bcaf1c7%40googlegroups.com](https://groups.google.com/d/msgid/elasticsearch/0557a204-ca5d-477b-8fb7-f86e8bcaf1c7%40googlegroups.com).  
> For more options, visit [https://groups.google.com/d/optout](https://groups.google.com/d/optout).

--  
You received this message because you are subscribed to the Google Groups "elasticsearch" group.  
To unsubscribe from this group and stop receiving emails from it, send an email to [elasticsearch+unsubscribe@googlegroups.com](mailto:elasticsearch+unsubscribe@googlegroups.com).  
To view this discussion on the web visit [https://groups.google.com/d/msgid/elasticsearch/BD9D86C7-E176-41D3-9B1B-0E355738474C%40pilato.fr](https://groups.google.com/d/msgid/elasticsearch/BD9D86C7-E176-41D3-9B1B-0E355738474C%40pilato.fr).  
For more options, visit [https://groups.google.com/d/optout](https://groups.google.com/d/optout).

---

<div class="post-metadata">

### Author: ![4m7u1](https://avatars.discourse-cdn.com/v4/letter/4/8e7dd6/32.png) [@4m7u1](https://discuss.elastic.co/u/4m7u1)
#### Post date: [February 1, 2015, 7:07pm UTC](https://discuss.elastic.co/t/java-lang-noclassdeffounderror-org-elasticsearch-common-settings-immutablesettings/21940/3 "2015-02-01T19:07:01Z")

</div>

I have included all the jars. Elastic search as well as lucene. What else  
could be the issue? Or did i miss any of the jars?

On Sunday, February 1, 2015, David Pilato [david@pilato.fr](mailto:david@pilato.fr) wrote:

> > I have included all the required libraries.
> 
> _java.lang.NoClassDefFoundError:  
> org.elasticsearch.common.settings.ImmutableSettings_
> 
> Sounds like you did not include elasticsearch jar.
> 
> --  
> David 😉  
> Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs
> 
> Le 1 févr. 2015 à 17:41, 4m7u1 \<[amtulnazneen7@gmail.com](mailto:amtulnazneen7@gmail.com)  
> \<javascript:\_e(%7B%7D,'cvml','amtulnazneen7@gmail.com');\>\> a écrit :
> 
> I have a custom method for indexing data into elasticsearch. When i run  
> this, i get the error as :\* java.lang.NoClassDefFoundError:  
> org.elasticsearch.common.settings.ImmutableSettings\*  
> I have included all the required libraries.
> 
> public void insertIntoElasticsearch(String JsonString, String idAttribute)  
> {  
> Settings settings =  
> ImmutableSettings.settingsBuilder().put("http.enabled",  
> "false").put("transport.tcp.port",  
> "9300-9400").put("discovery.zen.ping.multicast.enabled", "false")
> 
> .put("discovery.zen.ping.unicast.hosts", "localhost").build();
> 
> ```
> TransportClient client = new TransportClient(settings);
> client.addTransportAddress(new
> 
> ```
> 
> InetSocketTransportAddress("localhost",9300));  
> IndexResponse response = client.prepareIndex("dbdata",  
> "type",idAttribute ).setSource(JsonString).execute().actionGet();  
> String \_id = response.getId();  
> System.out.println("-----id-----" + \_id + "---------");  
> System.out.println("-----Insert Into Elasticsearch-----");  
> }
> 
> Thanks.
> 
> --  
> You received this message because you are subscribed to the Google Groups  
> "elasticsearch" group.  
> To unsubscribe from this group and stop receiving emails from it, send an  
> email to [elasticsearch+unsubscribe@googlegroups.com](mailto:elasticsearch+unsubscribe@googlegroups.com)  
> \<javascript:\_e(%7B%7D,'cvml','elasticsearch%2Bunsubscribe@googlegroups.com');\>  
> .  
> To view this discussion on the web visit  
> [https://groups.google.com/d/msgid/elasticsearch/0557a204-ca5d-477b-8fb7-f86e8bcaf1c7%40googlegroups.com](https://groups.google.com/d/msgid/elasticsearch/0557a204-ca5d-477b-8fb7-f86e8bcaf1c7%40googlegroups.com)  
> [https://groups.google.com/d/msgid/elasticsearch/0557a204-ca5d-477b-8fb7-f86e8bcaf1c7%40googlegroups.com?utm\_medium=email&utm\_source=footer](https://groups.google.com/d/msgid/elasticsearch/0557a204-ca5d-477b-8fb7-f86e8bcaf1c7%40googlegroups.com?utm_medium=email&utm_source=footer)  
> .  
> For more options, visit [https://groups.google.com/d/optout](https://groups.google.com/d/optout).
> 
> --  
> You received this message because you are subscribed to a topic in the  
> Google Groups "elasticsearch" group.  
> To unsubscribe from this topic, visit  
> [https://groups.google.com/d/topic/elasticsearch/0ZXIsmo8AwQ/unsubscribe](https://groups.google.com/d/topic/elasticsearch/0ZXIsmo8AwQ/unsubscribe).  
> To unsubscribe from this group and all its topics, send an email to  
> [elasticsearch+unsubscribe@googlegroups.com](mailto:elasticsearch+unsubscribe@googlegroups.com)  
> \<javascript:\_e(%7B%7D,'cvml','elasticsearch%2Bunsubscribe@googlegroups.com');\>  
> .  
> To view this discussion on the web visit  
> [https://groups.google.com/d/msgid/elasticsearch/BD9D86C7-E176-41D3-9B1B-0E355738474C%40pilato.fr](https://groups.google.com/d/msgid/elasticsearch/BD9D86C7-E176-41D3-9B1B-0E355738474C%40pilato.fr)  
> [https://groups.google.com/d/msgid/elasticsearch/BD9D86C7-E176-41D3-9B1B-0E355738474C%40pilato.fr?utm\_medium=email&utm\_source=footer](https://groups.google.com/d/msgid/elasticsearch/BD9D86C7-E176-41D3-9B1B-0E355738474C%40pilato.fr?utm_medium=email&utm_source=footer)  
> .  
> For more options, visit [https://groups.google.com/d/optout](https://groups.google.com/d/optout).

--  
Regards,  
Amtul Nazneen

--  
You received this message because you are subscribed to the Google Groups "elasticsearch" group.  
To unsubscribe from this group and stop receiving emails from it, send an email to [elasticsearch+unsubscribe@googlegroups.com](mailto:elasticsearch+unsubscribe@googlegroups.com).  
To view this discussion on the web visit [https://groups.google.com/d/msgid/elasticsearch/CA%2BEOwQ%3D%2B3R9jzPtoiYHp1T0bB4r2\_uTzA3C3D0zu5FHjchHtsw%40mail.gmail.com](https://groups.google.com/d/msgid/elasticsearch/CA%2BEOwQ%3D%2B3R9jzPtoiYHp1T0bB4r2_uTzA3C3D0zu5FHjchHtsw%40mail.gmail.com).  
For more options, visit [https://groups.google.com/d/optout](https://groups.google.com/d/optout).

---

<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: [February 1, 2015, 7:39pm UTC](https://discuss.elastic.co/t/java-lang-noclassdeffounderror-org-elasticsearch-common-settings-immutablesettings/21940/4 "2015-02-01T19:39:19Z")

</div>

I don't know.  
I guess you are not using Maven, right?

Not sure what you did, what your classpath looks like, how you deploy your app...

No clue here.

--  
David 😉  
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

> Le 1 févr. 2015 à 20:07, Amtul Nazneen [amtulnazneen7@gmail.com](mailto:amtulnazneen7@gmail.com) a écrit :
> 
> I have included all the jars. Elastic search as well as lucene. What else could be the issue? Or did i miss any of the jars?
> 
> > On Sunday, February 1, 2015, David Pilato [david@pilato.fr](mailto:david@pilato.fr) wrote:
> > 
> > > I have included all the required libraries.  
> > > java.lang.NoClassDefFoundError: org.elasticsearch.common.settings.ImmutableSettings
> > 
> > Sounds like you did not include elasticsearch jar.
> > 
> > --  
> > David 😉  
> > Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs
> > 
> > > Le 1 févr. 2015 à 17:41, 4m7u1 [amtulnazneen7@gmail.com](mailto:amtulnazneen7@gmail.com) a écrit :
> > > 
> > > I have a custom method for indexing data into elasticsearch. When i run this, i get the error as : java.lang.NoClassDefFoundError: org.elasticsearch.common.settings.ImmutableSettings  
> > > I have included all the required libraries.
> > > 
> > > public void insertIntoElasticsearch(String JsonString, String idAttribute)  
> > > {  
> > > Settings settings = ImmutableSettings.settingsBuilder().put("http.enabled", "false").put("transport.tcp.port", "9300-9400").put("discovery.zen.ping.multicast.enabled", "false")  
> > > .put("discovery.zen.ping.unicast.hosts", "localhost").build();
> > > 
> > > ```
> > > TransportClient client = new TransportClient(settings); 
> > > client.addTransportAddress(new InetSocketTransportAddress("localhost",9300)); 
> > > IndexResponse response = client.prepareIndex("dbdata", "type",idAttribute ).setSource(JsonString).execute().actionGet();
> > > String _id = response.getId();
> > > System.out.println("-----id-----" + _id + "---------");
> > > System.out.println("-----Insert Into Elasticsearch-----");
> > > }
> > > 
> > > ```
> > > 
> > > ## Thanks.
> > > 
> > > You received this message because you are subscribed to the Google Groups "elasticsearch" group.  
> > > To unsubscribe from this group and stop receiving emails from it, send an email to [elasticsearch+unsubscribe@googlegroups.com](mailto:elasticsearch+unsubscribe@googlegroups.com).  
> > > To view this discussion on the web visit [https://groups.google.com/d/msgid/elasticsearch/0557a204-ca5d-477b-8fb7-f86e8bcaf1c7%40googlegroups.com](https://groups.google.com/d/msgid/elasticsearch/0557a204-ca5d-477b-8fb7-f86e8bcaf1c7%40googlegroups.com).  
> > > For more options, visit [https://groups.google.com/d/optout](https://groups.google.com/d/optout).
> > 
> > --  
> > You received this message because you are subscribed to a topic in the Google Groups "elasticsearch" group.  
> > To unsubscribe from this topic, visit [https://groups.google.com/d/topic/elasticsearch/0ZXIsmo8AwQ/unsubscribe](https://groups.google.com/d/topic/elasticsearch/0ZXIsmo8AwQ/unsubscribe).  
> > To unsubscribe from this group and all its topics, send an email to [elasticsearch+unsubscribe@googlegroups.com](mailto:elasticsearch+unsubscribe@googlegroups.com).  
> > To view this discussion on the web visit [https://groups.google.com/d/msgid/elasticsearch/BD9D86C7-E176-41D3-9B1B-0E355738474C%40pilato.fr](https://groups.google.com/d/msgid/elasticsearch/BD9D86C7-E176-41D3-9B1B-0E355738474C%40pilato.fr).  
> > For more options, visit [https://groups.google.com/d/optout](https://groups.google.com/d/optout).
> 
> --  
> Regards,  
> Amtul Nazneen
> 
> --  
> You received this message because you are subscribed to the Google Groups "elasticsearch" group.  
> To unsubscribe from this group and stop receiving emails from it, send an email to [elasticsearch+unsubscribe@googlegroups.com](mailto:elasticsearch+unsubscribe@googlegroups.com).  
> To view this discussion on the web visit [https://groups.google.com/d/msgid/elasticsearch/CA%2BEOwQ%3D%2B3R9jzPtoiYHp1T0bB4r2\_uTzA3C3D0zu5FHjchHtsw%40mail.gmail.com](https://groups.google.com/d/msgid/elasticsearch/CA%2BEOwQ%3D%2B3R9jzPtoiYHp1T0bB4r2_uTzA3C3D0zu5FHjchHtsw%40mail.gmail.com).  
> For more options, visit [https://groups.google.com/d/optout](https://groups.google.com/d/optout).

--  
You received this message because you are subscribed to the Google Groups "elasticsearch" group.  
To unsubscribe from this group and stop receiving emails from it, send an email to [elasticsearch+unsubscribe@googlegroups.com](mailto:elasticsearch+unsubscribe@googlegroups.com).  
To view this discussion on the web visit [https://groups.google.com/d/msgid/elasticsearch/D90B1518-F42E-4B37-8BEC-0F13C8F165F9%40pilato.fr](https://groups.google.com/d/msgid/elasticsearch/D90B1518-F42E-4B37-8BEC-0F13C8F165F9%40pilato.fr).  
For more options, visit [https://groups.google.com/d/optout](https://groups.google.com/d/optout).

---

<div class="post-metadata">

### Author: ![4m7u1](https://avatars.discourse-cdn.com/v4/letter/4/8e7dd6/32.png) [@4m7u1](https://discuss.elastic.co/u/4m7u1)
#### Post date: [February 2, 2015, 2:48am UTC](https://discuss.elastic.co/t/java-lang-noclassdeffounderror-org-elasticsearch-common-settings-immutablesettings/21940/5 "2015-02-02T02:48:55Z")

</div>

No am not using maven. I'm deploying my app through an IDE(jdev). i added  
all the relevant jars to my project. Please help me out here.

On Monday, February 2, 2015, David Pilato [david@pilato.fr](mailto:david@pilato.fr) wrote:

> I don't know.  
> I guess you are not using Maven, right?
> 
> Not sure what you did, what your classpath looks like, how you deploy your  
> app...
> 
> No clue here.
> 
> --  
> David 😉  
> Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs
> 
> Le 1 févr. 2015 à 20:07, Amtul Nazneen \<[amtulnazneen7@gmail.com](mailto:amtulnazneen7@gmail.com)  
> \<javascript:\_e(%7B%7D,'cvml','amtulnazneen7@gmail.com');\>\> a écrit :
> 
> I have included all the jars. Elastic search as well as lucene. What else  
> could be the issue? Or did i miss any of the jars?
> 
> On Sunday, February 1, 2015, David Pilato \<[david@pilato.fr](mailto:david@pilato.fr)  
> \<javascript:\_e(%7B%7D,'cvml','david@pilato.fr');\>\> wrote:
> 
> > > I have included all the required libraries.
> > 
> > _java.lang.NoClassDefFoundError:  
> > org.elasticsearch.common.settings.ImmutableSettings_
> > 
> > Sounds like you did not include elasticsearch jar.
> > 
> > --  
> > David 😉  
> > Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs
> > 
> > Le 1 févr. 2015 à 17:41, 4m7u1 [amtulnazneen7@gmail.com](mailto:amtulnazneen7@gmail.com) a écrit :
> > 
> > I have a custom method for indexing data into elasticsearch. When i run  
> > this, i get the error as :\* java.lang.NoClassDefFoundError:  
> > org.elasticsearch.common.settings.ImmutableSettings\*  
> > I have included all the required libraries.
> > 
> > public void insertIntoElasticsearch(String JsonString, String  
> > idAttribute)  
> > {  
> > Settings settings =  
> > ImmutableSettings.settingsBuilder().put("http.enabled",  
> > "false").put("transport.tcp.port",  
> > "9300-9400").put("discovery.zen.ping.multicast.enabled", "false")
> > 
> > .put("discovery.zen.ping.unicast.hosts", "localhost").build();
> > 
> > ```
> > TransportClient client = new TransportClient(settings);
> > client.addTransportAddress(new
> > 
> > ```
> > 
> > InetSocketTransportAddress("localhost",9300));  
> > IndexResponse response = client.prepareIndex("dbdata",  
> > "type",idAttribute ).setSource(JsonString).execute().actionGet();  
> > String \_id = response.getId();  
> > System.out.println("-----id-----" + \_id + "---------");  
> > System.out.println("-----Insert Into Elasticsearch-----");  
> > }
> > 
> > Thanks.
> > 
> > --  
> > You received this message because you are subscribed to the Google Groups  
> > "elasticsearch" group.  
> > To unsubscribe from this group and stop receiving emails from it, send an  
> > email to [elasticsearch+unsubscribe@googlegroups.com](mailto:elasticsearch+unsubscribe@googlegroups.com).  
> > To view this discussion on the web visit  
> > [https://groups.google.com/d/msgid/elasticsearch/0557a204-ca5d-477b-8fb7-f86e8bcaf1c7%40googlegroups.com](https://groups.google.com/d/msgid/elasticsearch/0557a204-ca5d-477b-8fb7-f86e8bcaf1c7%40googlegroups.com)  
> > [https://groups.google.com/d/msgid/elasticsearch/0557a204-ca5d-477b-8fb7-f86e8bcaf1c7%40googlegroups.com?utm\_medium=email&utm\_source=footer](https://groups.google.com/d/msgid/elasticsearch/0557a204-ca5d-477b-8fb7-f86e8bcaf1c7%40googlegroups.com?utm_medium=email&utm_source=footer)  
> > .  
> > For more options, visit [https://groups.google.com/d/optout](https://groups.google.com/d/optout).
> > 
> > --  
> > You received this message because you are subscribed to a topic in the  
> > Google Groups "elasticsearch" group.  
> > To unsubscribe from this topic, visit  
> > [https://groups.google.com/d/topic/elasticsearch/0ZXIsmo8AwQ/unsubscribe](https://groups.google.com/d/topic/elasticsearch/0ZXIsmo8AwQ/unsubscribe).  
> > To unsubscribe from this group and all its topics, send an email to  
> > [elasticsearch+unsubscribe@googlegroups.com](mailto:elasticsearch+unsubscribe@googlegroups.com).  
> > To view this discussion on the web visit  
> > [https://groups.google.com/d/msgid/elasticsearch/BD9D86C7-E176-41D3-9B1B-0E355738474C%40pilato.fr](https://groups.google.com/d/msgid/elasticsearch/BD9D86C7-E176-41D3-9B1B-0E355738474C%40pilato.fr)  
> > [https://groups.google.com/d/msgid/elasticsearch/BD9D86C7-E176-41D3-9B1B-0E355738474C%40pilato.fr?utm\_medium=email&utm\_source=footer](https://groups.google.com/d/msgid/elasticsearch/BD9D86C7-E176-41D3-9B1B-0E355738474C%40pilato.fr?utm_medium=email&utm_source=footer)  
> > .  
> > For more options, visit [https://groups.google.com/d/optout](https://groups.google.com/d/optout).
> 
> --  
> Regards,  
> Amtul Nazneen
> 
> --  
> You received this message because you are subscribed to the Google Groups  
> "elasticsearch" group.  
> To unsubscribe from this group and stop receiving emails from it, send an  
> email to [elasticsearch+unsubscribe@googlegroups.com](mailto:elasticsearch+unsubscribe@googlegroups.com)  
> \<javascript:\_e(%7B%7D,'cvml','elasticsearch%2Bunsubscribe@googlegroups.com');\>  
> .  
> To view this discussion on the web visit  
> [https://groups.google.com/d/msgid/elasticsearch/CA%2BEOwQ%3D%2B3R9jzPtoiYHp1T0bB4r2\_uTzA3C3D0zu5FHjchHtsw%40mail.gmail.com](https://groups.google.com/d/msgid/elasticsearch/CA%2BEOwQ%3D%2B3R9jzPtoiYHp1T0bB4r2_uTzA3C3D0zu5FHjchHtsw%40mail.gmail.com)  
> [https://groups.google.com/d/msgid/elasticsearch/CA%2BEOwQ%3D%2B3R9jzPtoiYHp1T0bB4r2\_uTzA3C3D0zu5FHjchHtsw%40mail.gmail.com?utm\_medium=email&utm\_source=footer](https://groups.google.com/d/msgid/elasticsearch/CA%2BEOwQ%3D%2B3R9jzPtoiYHp1T0bB4r2_uTzA3C3D0zu5FHjchHtsw%40mail.gmail.com?utm_medium=email&utm_source=footer)  
> .  
> For more options, visit [https://groups.google.com/d/optout](https://groups.google.com/d/optout).
> 
> --  
> You received this message because you are subscribed to a topic in the  
> Google Groups "elasticsearch" group.  
> To unsubscribe from this topic, visit  
> [https://groups.google.com/d/topic/elasticsearch/0ZXIsmo8AwQ/unsubscribe](https://groups.google.com/d/topic/elasticsearch/0ZXIsmo8AwQ/unsubscribe).  
> To unsubscribe from this group and all its topics, send an email to  
> [elasticsearch+unsubscribe@googlegroups.com](mailto:elasticsearch+unsubscribe@googlegroups.com)  
> \<javascript:\_e(%7B%7D,'cvml','elasticsearch%2Bunsubscribe@googlegroups.com');\>  
> .  
> To view this discussion on the web visit  
> [https://groups.google.com/d/msgid/elasticsearch/D90B1518-F42E-4B37-8BEC-0F13C8F165F9%40pilato.fr](https://groups.google.com/d/msgid/elasticsearch/D90B1518-F42E-4B37-8BEC-0F13C8F165F9%40pilato.fr)  
> [https://groups.google.com/d/msgid/elasticsearch/D90B1518-F42E-4B37-8BEC-0F13C8F165F9%40pilato.fr?utm\_medium=email&utm\_source=footer](https://groups.google.com/d/msgid/elasticsearch/D90B1518-F42E-4B37-8BEC-0F13C8F165F9%40pilato.fr?utm_medium=email&utm_source=footer)  
> .  
> For more options, visit [https://groups.google.com/d/optout](https://groups.google.com/d/optout).

--  
Regards,  
Amtul Nazneen

--  
You received this message because you are subscribed to the Google Groups "elasticsearch" group.  
To unsubscribe from this group and stop receiving emails from it, send an email to [elasticsearch+unsubscribe@googlegroups.com](mailto:elasticsearch+unsubscribe@googlegroups.com).  
To view this discussion on the web visit [https://groups.google.com/d/msgid/elasticsearch/CA%2BEOwQkXk7sKfEq0fxUDLjr%3D1oq4v%2Bk9s9iBSeSYk1c8sVkCaA%40mail.gmail.com](https://groups.google.com/d/msgid/elasticsearch/CA%2BEOwQkXk7sKfEq0fxUDLjr%3D1oq4v%2Bk9s9iBSeSYk1c8sVkCaA%40mail.gmail.com).  
For more options, visit [https://groups.google.com/d/optout](https://groups.google.com/d/optout).

---

<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: [July 6, 2017, 12:35am UTC](https://discuss.elastic.co/t/java-lang-noclassdeffounderror-org-elasticsearch-common-settings-immutablesettings/21940/6 "2017-07-06T00:35:25Z")

</div>


