Skip to content

Commit 58082b6

Browse files
committed
upgrade msal4j version
1 parent 6e18e83 commit 58082b6

2 files changed

Lines changed: 16 additions & 16 deletions

File tree

LabApiUtilities/build.gradle

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ if (project.hasProperty("labSecret")) {
2323
labClientSecret = labSecret
2424
}
2525

26-
//java {
27-
// sourceCompatibility = JavaVersion.VERSION_11
28-
// targetCompatibility = JavaVersion.VERSION_11
29-
//}
26+
java {
27+
sourceCompatibility = JavaVersion.VERSION_1_8
28+
targetCompatibility = JavaVersion.VERSION_1_8
29+
}
3030

3131
buildSystem {
3232
desugar = false
@@ -82,17 +82,17 @@ afterEvaluate {
8282
// Needed when using java 17 since reflection had been removed.
8383
// Need to use these compiler arguments to allow for reflection.
8484
// More information here https://stackoverflow.com/questions/74723932/java-17-reflection-issue
85-
tasks.withType(JavaCompile) {
86-
options.compilerArgs += [
87-
'--add-opens', 'jdk.crypto.mscapi/sun.security.mscapi=ALL-UNNAMED'
88-
]
89-
}
90-
91-
tasks.withType(Test) {
92-
jvmArgs += [
93-
'--add-opens', 'jdk.crypto.mscapi/sun.security.mscapi=ALL-UNNAMED'
94-
]
95-
}
85+
//tasks.withType(JavaCompile) {
86+
// options.compilerArgs += [
87+
// '--add-opens', 'jdk.crypto.mscapi/sun.security.mscapi=ALL-UNNAMED'
88+
// ]
89+
//}
90+
//
91+
//tasks.withType(Test) {
92+
// jvmArgs += [
93+
// '--add-opens', 'jdk.crypto.mscapi/sun.security.mscapi=ALL-UNNAMED'
94+
// ]
95+
//}
9696
jar {
9797
manifest {
9898
attributes('Implementation-Title': project.name,

gradle/versions.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ ext {
4747
uiAutomatorVersion = "2.2.0"
4848
daggerVersion = "2.31.2"
4949
daggerCompilerVersion = "2.31.2"
50-
msal4jVersion = "1.10.0"
50+
msal4jVersion = "1.20.1"
5151
moshiVersion = "1.14.0"
5252
moshiAdaptersVersion = "1.14.0"
5353
openpojoVersion = "0.9.1"

0 commit comments

Comments
 (0)