Skip to content
This repository was archived by the owner on Jun 18, 2024. It is now read-only.

Commit 8b09cc5

Browse files
author
Marcos Torres
committed
updating gradle script
1 parent f6d45c6 commit 8b09cc5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk/library.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ uploadArchives {
3535
repository (url: project.mavenRepoUrl) {
3636
authentication(
3737
// put these values in local file ~/.gradle/properties.gradle
38-
userName: project.bintrayUsername,
39-
password: project.bintrayApikey
38+
userName: project.hasProperty("bintrayUsername") ? project.bintrayUsername : "",
39+
password: project.hasProperty("bintrayApikey") ? project.bintrayApikey : ""
4040
)
4141
}
4242
}

0 commit comments

Comments
 (0)