We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a49a191 commit 8c8b295Copy full SHA for 8c8b295
1 file changed
LabApiUtilities/build.gradle
@@ -79,7 +79,17 @@ afterEvaluate {
79
// above in the plugins block.
80
compileJava.dependsOn generateBuildConfig, generateTestBuildConfig
81
}
82
+tasks.withType(JavaCompile) {
83
+ options.compilerArgs += [
84
+ '--add-opens', 'jdk.crypto.mscapi/sun.security.mscapi=ALL-UNNAMED'
85
+ ]
86
+}
87
88
+tasks.withType(Test) {
89
+ jvmArgs += [
90
91
92
93
jar {
94
manifest {
95
attributes('Implementation-Title': project.name,
0 commit comments