Skip to content

Commit f17d34a

Browse files
committed
license
1 parent 29e944c commit f17d34a

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111
}
1212
}
1313
plugins {
14-
id "com.jfrog.bintray" version "1.7"
14+
id "com.jfrog.bintray" version "1.+"
1515
id 'net.researchgate.release' version '2.3.4'
1616
id "com.github.hierynomus.license" version "0.14.0"
1717
}
@@ -143,7 +143,7 @@ publishing {
143143
id 'guy120494'
144144
name 'Guy Smorodinsky'
145145
}
146-
developer{
146+
developer {
147147
id 'osher-sade'
148148
name 'Osher Sade'
149149
}
@@ -157,8 +157,8 @@ publishing {
157157
afterReleaseBuild.dependsOn bintrayUpload
158158

159159
bintray {
160-
user = System.getenv('BINTRAY_USER') ?: project.findProperty('BINTRAY_USER') ?: ''
161-
key = System.getenv('BINTRAY_KEY') ?: project.findProperty('BINTRAY_KEY') ?: ''
160+
user = property('user') ?: System.getenv('BINTRAY_USER') ?: project.findProperty('BINTRAY_USER') ?: ''
161+
key = property('key') ?: System.getenv('BINTRAY_KEY') ?: project.findProperty('BINTRAY_KEY') ?: ''
162162
publications = ['maven']
163163
publish = true
164164
pkg {

gradle.properties

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,4 @@ org.gradle.daemon=true
55
org.gradle.parallel=true
66
org.gradle.jvmargs=-Dfile.encoding=UTF-8
77

8-
bintray.user=DUMMY_USER
9-
bintray.key=DUMMY_KEY
10-
version = 6.1
8+
version = 6.1.1

0 commit comments

Comments
 (0)