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 @@ -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 ()
You can’t perform that action at this time.
0 commit comments