Skip to content

Commit ce51737

Browse files
committed
- adds missing bintray repo
1 parent 5e58100 commit ce51737

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

build.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,20 @@ publishing {
176176
url = 'https://oss.jfrog.org/artifactory/libs-release'
177177
name = 'jfrog'
178178

179+
credentials {
180+
if (project.rootProject.file('local.properties').exists()) {
181+
Properties properties = new Properties()
182+
properties.load(project.rootProject.file('local.properties').newDataInputStream())
183+
username = (properties.containsKey('bintray.user')) ? properties.getProperty('bintray.user').toLowerCase() : "BINTRAY_USERNAME"
184+
password = properties.getProperty('bintray.apikey')
185+
}
186+
}
187+
}
188+
189+
maven {
190+
url = 'https://api.bintray.com/content/microsoftgraph/Maven/microsoft-graph-core'
191+
name = 'bintray'
192+
179193
credentials {
180194
if (project.rootProject.file('local.properties').exists()) {
181195
Properties properties = new Properties()

0 commit comments

Comments
 (0)