You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Summary
Updating the Pom syntax, which will also denote the scope of each
dependency appropriately.
Note the names of the artifacts and that most of the dependencies are
listed under Runtime now instead of Compile. This means that our
external dependencies which we declare with implementation configuration
are no longer leaking to our consumers. The configurations are now
working as described
[here](https://developer.android.com/build/dependencies#dependency_configurations).
println"Renaming build file $buildFile to '$buildDir${File.separator}outputs${File.separator}aar${File.separator}${archivesBaseName}-${version}.aar'"
316
-
if (!buildFile.renameTo("$buildDir${File.separator}outputs${File.separator}aar${File.separator}${archivesBaseName}-${version}.aar")) {
317
-
println"Rename failed!"
318
-
}
319
-
}
320
-
}
321
-
}
322
-
323
-
publishing {
324
-
publications {
325
-
msal(MavenPublication) {
326
-
groupId 'com.microsoft.identity.client'
327
-
artifactId 'msal'
328
-
//Edit the 'version' here for VSTS RC build
329
-
version = project.version
330
-
331
-
pom.withXml {
332
-
// Custom values
333
-
334
-
// Name
335
-
asNode().appendNode('name', 'msal')
336
-
337
-
// Description
338
-
asNode().appendNode(
339
-
'description',
340
-
'Microsoft Identity library for Android gives you the ability to add authentication to your application with just a few lines of additional code. Using our MSAL SDKs you can quickly and easily extend your existing application to all the employees that use MSA, B2C, Azure AD and Active Directory on-premises using Active Directory Federation Services, including Office365 customers.'
description ='Microsoft Identity library for Android gives you the ability to add authentication to your application with just a few lines of additional code. Using our MSAL SDKs you can quickly and easily extend your existing application to all the employees that use MSA, B2C, Azure AD and Active Directory on-premises using Active Directory Federation Services, including Office365 customers.'
0 commit comments