forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move zen discovery to be the default discovery, and move jgroups to a…
… plugin
- Loading branch information
Showing
17 changed files
with
161 additions
and
12 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
dependsOn(':elasticsearch') | ||
|
||
apply plugin: 'java' | ||
apply plugin: 'maven' | ||
|
||
archivesBaseName = "elasticsearch-discovery-jgroups" | ||
|
||
explodedDistDir = new File(distsDir, 'exploded') | ||
|
||
manifest.mainAttributes("Implementation-Title": "ElasticSearch::Plugins::Discovery::Jgrorups", "Implementation-Version": rootProject.version, "Implementation-Date": buildTimeStr) | ||
|
||
configurations.compile.transitive = true | ||
configurations.testCompile.transitive = true | ||
|
||
// no need to use the resource dir | ||
sourceSets.main.resources.srcDirs 'src/main/java' | ||
sourceSets.test.resources.srcDirs 'src/test/java' | ||
|
||
// add the source files to the dist jar | ||
jar { | ||
from sourceSets.main.allJava | ||
} | ||
|
||
configurations { | ||
dists | ||
distLib { | ||
visible = false | ||
transitive = false | ||
} | ||
} | ||
|
||
dependencies { | ||
compile project(':elasticsearch') | ||
compile('jgroups:jgroups:2.9.0.GA') { transitive = false } | ||
|
||
testCompile project(':test-testng') | ||
testCompile('org.testng:testng:5.10:jdk15') { transitive = false } | ||
} | ||
|
||
test { | ||
useTestNG() | ||
jmvArgs = ["-ea", "-Xmx1024m"] | ||
suiteName = project.name | ||
listeners = ["org.elasticsearch.util.testng.Listeners"] | ||
systemProperties["es.test.log.conf"] = System.getProperty("es.test.log.conf", "log4j-gradle.properties") | ||
} | ||
|
||
task explodedDist(dependsOn: [jar], description: 'Builds the plugin zip file') << { | ||
[explodedDistDir]*.mkdirs() | ||
|
||
copy { | ||
from configurations.distLib | ||
into explodedDistDir | ||
} | ||
|
||
// remove elasticsearch files (compile above adds the elasticsearch one) | ||
ant.delete { fileset(dir: explodedDistDir, includes: "elasticsearch-*.jar") } | ||
|
||
copy { | ||
from libsDir | ||
into explodedDistDir | ||
} | ||
|
||
ant.delete { fileset(dir: explodedDistDir, includes: "elasticsearch-*-javadoc.jar") } | ||
ant.delete { fileset(dir: explodedDistDir, includes: "elasticsearch-*-sources.jar") } | ||
} | ||
|
||
task zip(type: Zip, dependsOn: ['explodedDist']) { | ||
from(explodedDistDir) { | ||
} | ||
} | ||
|
||
task release(dependsOn: [zip]) << { | ||
ant.delete(dir: explodedDistDir) | ||
copy { | ||
from distsDir | ||
into(new File(rootProject.distsDir, "plugins")) | ||
} | ||
} | ||
|
||
configurations { | ||
deployerJars | ||
} | ||
|
||
dependencies { | ||
deployerJars "org.apache.maven.wagon:wagon-http:1.0-beta-2" | ||
} | ||
|
||
task sourcesJar(type: Jar, dependsOn: classes) { | ||
classifier = 'sources' | ||
from sourceSets.main.allSource | ||
} | ||
|
||
task javadocJar(type: Jar, dependsOn: javadoc) { | ||
classifier = 'javadoc' | ||
from javadoc.destinationDir | ||
} | ||
|
||
artifacts { | ||
archives sourcesJar | ||
archives javadocJar | ||
} | ||
|
||
uploadArchives { | ||
repositories.mavenDeployer { | ||
configuration = configurations.deployerJars | ||
repository(url: rootProject.mavenRepoUrl) { | ||
authentication(userName: rootProject.mavenRepoUser, password: rootProject.mavenRepoPass) | ||
} | ||
snapshotRepository(url: rootProject.mavenSnapshotRepoUrl) { | ||
authentication(userName: rootProject.mavenRepoUser, password: rootProject.mavenRepoPass) | ||
} | ||
|
||
pom.project { | ||
inceptionYear '2009' | ||
name 'elasticsearch-plugins-disocvery-jgroups' | ||
description 'Memcacehd Plugin for ElasticSearch' | ||
licenses { | ||
license { | ||
name 'The Apache Software License, Version 2.0' | ||
url 'http://www.apache.org/licenses/LICENSE-2.0.txt' | ||
distribution 'repo' | ||
} | ||
} | ||
scm { | ||
connection 'git://github.com/elasticsearch/elasticsearch.git' | ||
developerConnection 'git@github.com:elasticsearch/elasticsearch.git' | ||
url 'http://github.com/elasticsearch/elasticsearch' | ||
} | ||
} | ||
|
||
pom.whenConfigured {pom -> | ||
pom.dependencies = pom.dependencies.findAll {dep -> dep.scope != 'test' } // removes the test scoped ones | ||
} | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters