-
Notifications
You must be signed in to change notification settings - Fork 31
/
build.gradle
152 lines (131 loc) · 3.77 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
group = 'org.xbib.elasticsearch.plugin'
version = '2.3.0.0'
ext {
pluginName = 'termlist'
pluginClassname = 'org.xbib.elasticsearch.plugin.termlist.TermlistPlugin'
pluginDescription = 'Termlist for Elasticsearch'
user = 'charvind'
name = 'elasticsearch-index-termlist'
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.0',
'log4j': '2.5',
'junit' : '4.12',
'testng' : '6.9.10'
]
}
buildscript {
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven {
url "http://xbib.org/repository"
}
}
dependencies {
classpath 'org.ajoberstar:gradle-git:1.4.2'
classpath 'co.riiid:gradle-github-plugin:0.4.2'
classpath 'io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.5.3'
}
}
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'signing'
apply plugin: 'co.riiid.gradle'
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven {
url "http://xbib.org/repository"
}
}
configurations {
wagon
releaseJars {
extendsFrom runtime
exclude group: 'org.elasticsearch'
exclude module: 'jna'
exclude module: 'jackson-core'
exclude module: 'jackson-dataformat-smile'
exclude module: 'jackson-dataformat-yaml'
}
}
dependencies {
compile "org.elasticsearch:elasticsearch:${versions.elasticsearch}"
testCompile "junit:junit:${versions.junit}"
testCompile "org.testng:testng:${versions.testng}"
testCompile "org.apache.logging.log4j:log4j-slf4j-impl:${versions.log4j}"
testCompile "org.apache.logging.log4j:log4j-core:${versions.log4j}"
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 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 files(libsDir)
from configurations.releaseJars
from 'build/tmp/plugin'
classifier 'plugin'
}
task unpackPlugin(type: Copy, dependsOn: [':buildPluginZip']) {
delete "plugins"
from files(libsDir)
from configurations.releaseJars
from 'build/tmp/plugin'
into "plugins/${pluginName}"
}
clean {
delete "plugins"
delete "logs"
}
task javadocJar(type: Jar, dependsOn: classes) {
from javadoc
into "build/tmp"
classifier 'javadoc'
}
task sourcesJar(type: Jar, dependsOn: classes) {
from sourceSets.main.allSource
into "build/tmp"
classifier 'sources'
}
artifacts {
archives javadocJar, sourcesJar, buildPluginZip
}
if (project.hasProperty('signing.keyId')) {
signing {
sign configurations.archives
}
}
ext.grgit = org.ajoberstar.grgit.Grgit.open()
apply from: 'gradle/git.gradle'
apply from: 'gradle/publish.gradle'