mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 02:14:54 +00:00
rename client-groovy to lang-groovy
This commit is contained in:
parent
ce28882660
commit
efe5b5734c
2
.idea/modules.xml
generated
2
.idea/modules.xml
generated
@ -6,8 +6,8 @@
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/modules/elasticsearch.iml" filepath="$PROJECT_DIR$/.idea/modules/elasticsearch.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/modules/elasticsearch-root.iml" filepath="$PROJECT_DIR$/.idea/modules/elasticsearch-root.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/modules/plugin-analysis-icu.iml" filepath="$PROJECT_DIR$/.idea/modules/plugin-analysis-icu.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/modules//plugin-client-groovy.iml" filepath="$PROJECT_DIR$/.idea/modules//plugin-client-groovy.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/modules//plugin-cloud-aws.iml" filepath="$PROJECT_DIR$/.idea/modules//plugin-cloud-aws.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/modules/plugin-lang-groovy.iml" filepath="$PROJECT_DIR$/.idea/modules/plugin-lang-groovy.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/modules//plugin-mapper-attachments.iml" filepath="$PROJECT_DIR$/.idea/modules//plugin-mapper-attachments.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/modules//plugin-river-couchdb.iml" filepath="$PROJECT_DIR$/.idea/modules//plugin-river-couchdb.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/modules//plugin-river-rabbitmq.iml" filepath="$PROJECT_DIR$/.idea/modules//plugin-river-rabbitmq.iml" />
|
||||
|
2
.idea/modules/elasticsearch-root.iml
generated
2
.idea/modules/elasticsearch-root.iml
generated
@ -13,7 +13,7 @@
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
<orderEntry type="module" module-name="elasticsearch" />
|
||||
<orderEntry type="module" module-name="plugin-client-groovy" />
|
||||
<orderEntry type="module" module-name="plugin-lang-groovy" />
|
||||
<orderEntry type="module" module-name="plugin-mapper-attachments" />
|
||||
<orderEntry type="module" module-name="plugin-transport-memcached" />
|
||||
<orderEntry type="module" module-name="plugin-transport-thrift" />
|
||||
|
@ -1,14 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="false">
|
||||
<output url="file://$MODULE_DIR$/../../plugins/client/groovy/build/classes/main" />
|
||||
<output-test url="file://$MODULE_DIR$/../../plugins/client/groovy/build/classes/test" />
|
||||
<output url="file://$MODULE_DIR$/../../plugins/lang/groovy/build/classes/main" />
|
||||
<output-test url="file://$MODULE_DIR$/../../plugins/lang/groovy/build/classes/test" />
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$/../../plugins/client/groovy">
|
||||
<sourceFolder url="file://$MODULE_DIR$/../../plugins/client/groovy/src/main/groovy" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/../../plugins/client/groovy/src/test/groovy" isTestSource="true" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/../../plugins/client/groovy/build" />
|
||||
<content url="file://$MODULE_DIR$/../../plugins/lang/groovy">
|
||||
<sourceFolder url="file://$MODULE_DIR$/../../plugins/lang/groovy/src/main/groovy" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/../../plugins/lang/groovy/src/test/groovy" isTestSource="true" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/../../plugins/client/groovy/work" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/../../plugins/lang/groovy/build" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
@ -3,7 +3,7 @@ dependsOn(':elasticsearch')
|
||||
apply plugin: 'groovy'
|
||||
apply plugin: 'maven'
|
||||
|
||||
archivesBaseName = "elasticsearch-client-groovy"
|
||||
archivesBaseName = "elasticsearch-lang-groovy"
|
||||
|
||||
explodedDistDir = new File(distsDir, 'exploded')
|
||||
|
||||
@ -122,7 +122,7 @@ uploadArchives {
|
||||
|
||||
pom.project {
|
||||
inceptionYear '2009'
|
||||
name 'elasticsearch-plugins-client--groovy'
|
||||
name 'elasticsearch-plugins-lang-groovy'
|
||||
description 'Groovy Plugin for ElasticSearch'
|
||||
licenses {
|
||||
license {
|
@ -60,7 +60,7 @@ class GNode {
|
||||
}
|
||||
|
||||
/**
|
||||
* Closes the node (and {@link #stop} s if its running).
|
||||
* Closes the node (and {@link #stop} s if its running).
|
||||
*/
|
||||
def close() {
|
||||
node.close()
|
@ -27,7 +27,7 @@ import org.elasticsearch.node.Node
|
||||
import org.elasticsearch.node.internal.InternalNode
|
||||
|
||||
/**
|
||||
* The node builder allow to build a {@link GNode} instance.
|
||||
* The node builder allow to build a {@link GNode} instance.
|
||||
*
|
||||
* @author kimchy (shay.banon)
|
||||
*/
|
@ -12,7 +12,7 @@ include 'plugins-cloud-aws'
|
||||
include 'plugins-hadoop'
|
||||
include 'plugins-analysis-icu'
|
||||
include 'plugins-mapper-attachments'
|
||||
include 'plugins-client-groovy'
|
||||
include 'plugins-lang-groovy'
|
||||
|
||||
include 'plugins-transport-memcached'
|
||||
include 'plugins-transport-thrift'
|
||||
|
Loading…
x
Reference in New Issue
Block a user