File tree 2 files changed +13
-4
lines changed 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1
1
group = ' org.xbib.elasticsearch.plugin'
2
- version = ' 2.3.1 .0'
2
+ version = ' 2.3.2 .0'
3
3
4
4
ext {
5
5
pluginName = ' langdetect'
11
11
scmConnection = ' scm:git:git://github.com/' + user + ' /' + name + ' .git'
12
12
scmDeveloperConnection = ' scm:git:git://github.com/' + user + ' /' + name + ' .git'
13
13
versions = [
14
- ' elasticsearch' : ' 2.3.1 ' ,
14
+ ' elasticsearch' : ' 2.3.2 ' ,
15
15
' jackson' : ' 2.6.2' ,
16
16
' log4j' : ' 2.5' ,
17
17
' junit' : ' 4.12'
Original file line number Diff line number Diff line change @@ -16,7 +16,9 @@ nexusStaging {
16
16
packageGroup = " org.xbib"
17
17
}
18
18
19
- uploadArchives {
19
+ task xbibUpload (type : Upload ) {
20
+ configuration = configurations. archives
21
+ uploadDescriptor = true
20
22
repositories {
21
23
if (project. hasProperty(" xbibUsername" )) {
22
24
mavenDeployer {
@@ -26,6 +28,13 @@ uploadArchives {
26
28
authentication : [userName : xbibUsername, privateKey : xbibPrivateKey])
27
29
}
28
30
}
31
+ }
32
+ }
33
+
34
+ task mavenCentralUpload (type : Upload ) {
35
+ configuration = configurations. archives
36
+ uploadDescriptor = true
37
+ repositories {
29
38
if (project. hasProperty(' ossrhUsername' )) {
30
39
mavenDeployer {
31
40
beforeDeployment { MavenDeployment deployment -> signing. signPom(deployment) }
@@ -38,7 +47,7 @@ uploadArchives {
38
47
description pluginDescription
39
48
packaging ' jar'
40
49
inceptionYear ' 2012'
41
- url url
50
+ url scmUrl
42
51
organization {
43
52
name ' xbib'
44
53
url ' http://xbib.org'
You can’t perform that action at this time.
0 commit comments