Skip to content

Commit 2ea9d06

Browse files
committed
- adds missing bintray repo
1 parent 32ddd0a commit 2ea9d06

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
@@ -181,6 +181,20 @@ publishing {
181181
url = 'https://oss.jfrog.org/artifactory/libs-release'
182182
name = 'jfrog'
183183

184+
credentials {
185+
if (project.rootProject.file('local.properties').exists()) {
186+
Properties properties = new Properties()
187+
properties.load(project.rootProject.file('local.properties').newDataInputStream())
188+
username = (properties.containsKey('bintray.user')) ? properties.getProperty('bintray.user').toLowerCase() : "BINTRAY_USERNAME"
189+
password = properties.getProperty('bintray.apikey')
190+
}
191+
}
192+
}
193+
194+
maven {
195+
url = 'https://api.bintray.com/content/microsoftgraph/Maven/microsoft-graph'
196+
name = 'bintray'
197+
184198
credentials {
185199
if (project.rootProject.file('local.properties').exists()) {
186200
Properties properties = new Properties()

0 commit comments

Comments
 (0)