Skip to content

Commit c66f9d7

Browse files
committed
update to Elasticsearch 2.2.1
1 parent d5a6105 commit c66f9d7

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

build.gradle

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
group = 'org.xbib.elasticsearch.plugin'
2+
version = '2.2.1.0'
13

24
buildscript {
35
repositories {
@@ -15,8 +17,15 @@ plugins {
1517
id 'org.ajoberstar.grgit' version '1.4.2'
1618
}
1719

18-
group = 'org.xbib.elasticsearch.plugin'
19-
version = '2.1.2.0'
20+
apply plugin: 'java'
21+
apply plugin: 'maven'
22+
apply plugin: 'signing'
23+
apply plugin: 'co.riiid.gradle'
24+
25+
println "Host: " + java.net.InetAddress.getLocalHost()
26+
println "Gradle: " + gradle.gradleVersion + " JVM: " + org.gradle.internal.jvm.Jvm.current() + " Groovy: " + GroovySystem.getVersion()
27+
println "Build: group: '${project.group}', name: '${project.name}', version: '${project.version}'"
28+
println "Timestamp: " + java.time.Instant.now().atZone(java.time.ZoneId.systemDefault()).toString()
2029

2130
ext {
2231
pluginName = 'knapsack'
@@ -28,18 +37,14 @@ ext {
2837
scmConnection = 'scm:git:git://github.com/' + user + '/' + name + '.git'
2938
scmDeveloperConnection = 'scm:git:git://github.com/' + user + '/' + name + '.git'
3039
versions = [
31-
'elasticsearch' : '2.1.2',
32-
'elasticsearch-helper' : '2.1.1.5',
40+
'elasticsearch' : '2.2.1',
41+
'elasticsearch-helper' : '2.2.1.0',
3342
'log4j': '2.5',
3443
'junit' : '4.12',
3544
'wagon' : '2.10'
3645
]
3746
}
3847

39-
apply plugin: 'java'
40-
apply plugin: 'maven'
41-
apply plugin: 'signing'
42-
apply plugin: 'co.riiid.gradle'
4348

4449
repositories {
4550
mavenCentral()

0 commit comments

Comments
 (0)