File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff 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 ()
You can’t perform that action at this time.
0 commit comments