File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ apply plugin: 'net.researchgate.release'
5
5
apply plugin : ' maven-publish'
6
6
apply plugin : ' maven'
7
7
apply plugin : ' signing'
8
+ apply plugin : ' com.jfrog.bintray'
8
9
9
10
compileJava. options. encoding = ' UTF-8'
10
11
@@ -15,10 +16,12 @@ buildscript {
15
16
repositories {
16
17
mavenLocal()
17
18
mavenCentral()
19
+ jcenter()
18
20
}
19
21
20
22
dependencies {
21
23
classpath ' net.researchgate:gradle-release:2.3.5'
24
+ classpath ' com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
22
25
}
23
26
}
24
27
@@ -40,6 +43,18 @@ release {
40
43
41
44
afterReleaseBuild. dependsOn publish
42
45
46
+ bintray {
47
+ user = ' ${bintray_user}'
48
+ key = ' ${bintray_api_key}'
49
+ configurations = [' archives' ]
50
+ pkg {
51
+ repo = ' spring-properties-loader'
52
+ name = ' s3-loader'
53
+ licenses = [' Apache-2.0' ]
54
+ vcsUrl = ' https://github.com/ericdallo/spring-s3-properties-loader.git'
55
+ }
56
+ }
57
+
43
58
repositories {
44
59
mavenCentral()
45
60
mavenLocal()
@@ -61,7 +76,6 @@ task sourcesJar(type: Jar) {
61
76
62
77
artifacts {
63
78
archives jar
64
-
65
79
archives sourcesJar
66
80
}
67
81
You can’t perform that action at this time.
0 commit comments