forked from jprante/elasticsearch-analysis-decompound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
156 lines (134 loc) · 4.54 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
group = 'org.xbib.elasticsearch.plugin'
version = '2.3.4.0'
ext {
pluginName = 'decompound'
pluginClassname = 'org.xbib.elasticsearch.plugin.analysis.decompound.AnalysisDecompoundPlugin'
pluginDescription = 'Decompounder plugin for Elasticsearch'
user = 'jprante'
name = 'elasticsearch-analysis-decompound'
scmUrl = 'https://github.com/' + user + '/' + name
scmConnection = 'scm:git:git://github.com/' + user + '/' + name + '.git'
scmDeveloperConnection = 'scm:git:git://github.com/' + user + '/' + name + '.git'
versions = [
'elasticsearch' : '2.3.4',
'log4j': '2.5',
'junit' : '4.12'
]
}
println "Host: " + java.net.InetAddress.getLocalHost()
println "Gradle: " + gradle.gradleVersion + " JVM: " + org.gradle.internal.jvm.Jvm.current() + " Groovy: " + GroovySystem.getVersion()
println "Build: group: '${project.group}', name: '${project.name}', version: '${project.version}'"
apply plugin: 'java'
apply plugin: 'maven'
repositories {
mavenCentral()
mavenLocal()
jcenter()
maven {
url "http://xbib.org/repository"
}
}
sourceSets {
integrationTest {
java {
compileClasspath += main.output + test.output
runtimeClasspath += main.output + test.output
srcDir file('src/integration-test/java')
}
resources.srcDir file('src/integration-test/resources')
}
}
configurations {
providedCompile
wagon
integrationTestCompile.extendsFrom testCompile
integrationTestRuntime.extendsFrom testRuntime
releaseJars {
extendsFrom runtime
exclude group: 'org.elasticsearch'
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-core'
exclude group: 'org.slf4j'
exclude group: 'log4j'
}
}
dependencies {
compile "org.elasticsearch:elasticsearch:${versions.elasticsearch}"
testCompile "junit:junit:${versions.junit}"
testCompile "org.apache.logging.log4j:log4j-slf4j-impl:${versions.log4j}"
testCompile "org.apache.logging.log4j:log4j-core:${versions.log4j}"
integrationTestCompile "junit:junit:${versions.junit}"
releaseJars "${project.group}:${project.name}:${project.version}"
wagon 'org.apache.maven.wagon:wagon-ssh-external:2.10'
}
sourceCompatibility = 1.7
targetCompatibility = 1.7
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked,deprecation"
}
test {
systemProperties['path.home'] = System.getProperty("user.dir")
testLogging {
showStandardStreams = false
exceptionFormat = 'full'
}
}
task integrationTest(type: Test, dependsOn: ['unpackPlugin']) {
testClassesDir = sourceSets.integrationTest.output.classesDir
classpath = configurations.integrationTestCompile
classpath += fileTree("plugins/${pluginName}").include('*.jar')
classpath += sourceSets.integrationTest.output
// without this trick to remove identical jars from classpath, an Elasticsearch bug whines about a "jar hell"
classpath -= configurations.releaseJars
outputs.upToDateWhen { false }
systemProperty 'path.home', projectDir.absolutePath
testLogging.showStandardStreams = false
}
integrationTest.mustRunAfter test
check.dependsOn integrationTest
clean {
delete "plugins"
delete "data"
delete "logs"
}
task makePluginDescriptor(type: Copy) {
from 'src/main/templates'
into 'build/tmp/plugin'
expand([
'descriptor': [
'name': pluginName,
'classname': pluginClassname,
'description': pluginDescription,
'jvm': true,
'site': false,
'isolated': true,
'version': project.property('version'),
'javaVersion': project.property('targetCompatibility'),
'elasticsearchVersion' : versions.elasticsearch
]
])
}
task buildPluginZip(type: Zip, dependsOn: [':jar', ':makePluginDescriptor']) {
from configurations.releaseJars
from 'build/tmp/plugin'
classifier = 'plugin'
}
task unpackPlugin(type: Copy, dependsOn: [':buildPluginZip']) {
delete "plugins"
from configurations.releaseJars
from 'build/tmp/plugin'
into "plugins/${pluginName}"
}
task sourcesJar(type: Jar, dependsOn: classes) {
from sourceSets.main.allSource
into 'build/tmp/sources'
classifier 'sources'
}
task javadocJar(type: Jar, dependsOn: classes) {
from javadoc
into 'build/tmp'
classifier 'javadoc'
}
artifacts {
archives javadocJar, sourcesJar, buildPluginZip
}
apply from: 'gradle/publish.gradle'