Skip to content
This repository was archived by the owner on May 19, 2022. It is now read-only.

Commit e6b1842

Browse files
committed
removed env variables from build
1 parent 3a4f389 commit e6b1842

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ test {
4343
}
4444

4545
bintray {
46-
user = project.hasProperty('bintrayUser') ? project.property('bintrayUser') : System.getenv('BINTRAY_USER')
47-
key = project.hasProperty('bintrayKey') ? project.property('bintrayKey') : System.getenv('BINTRAY_API_KEY')
46+
user = project.hasProperty('bintrayUser') ? project.property('bintrayUser') : ''
47+
key = project.hasProperty('bintrayKey') ? project.property('bintrayKey') : ''
4848
publications = ['mavenJava']
4949
publish = true
5050
pkg {
@@ -58,8 +58,8 @@ bintray {
5858
}
5959
mavenCentralSync {
6060
sync = true
61-
user = project.hasProperty('ossrhUsername') ? project.property('ossrhUsername') : System.getenv('OSSRH_USER')
62-
password = project.hasProperty('ossrhPassword') ? project.property('ossrhPassword') : System.getenv('OSSRH_PASSWORD')
61+
user = project.hasProperty('ossrhUsername') ? project.property('ossrhUsername') : ''
62+
password = project.hasProperty('ossrhPassword') ? project.property('ossrhPassword') : ''
6363
}
6464
}
6565
}

0 commit comments

Comments
 (0)