Skip to content

Commit 06f83d2

Browse files
committed
update to Elasticsearch 2.3.2
1 parent 39274fa commit 06f83d2

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group = 'org.xbib.elasticsearch.plugin'
2-
version = '2.3.1.0'
2+
version = '2.3.2.0'
33

44
ext {
55
pluginName = 'langdetect'
@@ -11,7 +11,7 @@ ext {
1111
scmConnection = 'scm:git:git://github.com/' + user + '/' + name + '.git'
1212
scmDeveloperConnection = 'scm:git:git://github.com/' + user + '/' + name + '.git'
1313
versions = [
14-
'elasticsearch' : '2.3.1',
14+
'elasticsearch' : '2.3.2',
1515
'jackson': '2.6.2',
1616
'log4j': '2.5',
1717
'junit' : '4.12'

gradle/publish.gradle

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ nexusStaging {
1616
packageGroup = "org.xbib"
1717
}
1818

19-
uploadArchives {
19+
task xbibUpload(type: Upload) {
20+
configuration = configurations.archives
21+
uploadDescriptor = true
2022
repositories {
2123
if (project.hasProperty("xbibUsername")) {
2224
mavenDeployer {
@@ -26,6 +28,13 @@ uploadArchives {
2628
authentication: [userName: xbibUsername, privateKey: xbibPrivateKey])
2729
}
2830
}
31+
}
32+
}
33+
34+
task mavenCentralUpload(type: Upload) {
35+
configuration = configurations.archives
36+
uploadDescriptor = true
37+
repositories {
2938
if (project.hasProperty('ossrhUsername')) {
3039
mavenDeployer {
3140
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
@@ -38,7 +47,7 @@ uploadArchives {
3847
description pluginDescription
3948
packaging 'jar'
4049
inceptionYear '2012'
41-
url url
50+
url scmUrl
4251
organization {
4352
name 'xbib'
4453
url 'http://xbib.org'

0 commit comments

Comments
 (0)