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
// In dev, we want to keep the dependencies (common4j, common) to 1.0.+ to be able to be consumed by daily dev pipeline.
190
190
// In release/*, we change these to specific versions being consumed.
191
-
def commonVersion ="1.0.+"
191
+
def commonVersion ="17.7.0"
192
192
if (project.hasProperty("distCommonVersion")) {
193
193
commonVersion = project.distCommonVersion
194
194
}
195
195
// Used for testfixtures
196
-
def common4jVersion ="1.0.+"
196
+
def common4jVersion ="14.7.0"
197
197
if (project.hasProperty("distCommon4jVersion")) {
198
198
distCommon4jVersion = project.distCommon4jVersion
199
199
}
@@ -309,16 +309,16 @@ afterEvaluate {
309
309
// Gradle 6.1.1 and Android Gradle Plugin 4.0.1 doesn't rename the file (see 'outputFileName' above)
310
310
// Adding this work around to have the file properly renamed.
311
311
// Please uncomment the section below for the Maven release step only. Currently troubleshooting why this extra renaming configuration is still needed for MSAL.
0 commit comments