Skip to content

Commit

Permalink
One more -add-opens.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnbroad committed Feb 28, 2023
1 parent c70582c commit 4b90179
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ dependencies {
testImplementation "com.google.jimfs:jimfs:1.1"
}

// This list needs to be kept in sync with the corresponding list in scripts/dockertest.gradle.
// This list needs to be kept in sync with the corresponding list in scripts/docker/dockertest.gradle.
//
// The --add-open directives required to run GATK. These directives need to be:
// - included as properties in the manifest file in the jar(s)
Expand Down Expand Up @@ -425,7 +425,8 @@ final runtimeAddOpens = [
'jdk.jfr/jdk.jfr.internal.management=ALL-UNNAMED',
'java.base/jdk.internal.module=ALL-UNNAMED',
'java.base/java.lang.module=ALL-UNNAMED',
'java.security.jgss/sun.security.krb5=ALL-UNNAMED'
'java.security.jgss/sun.security.krb5=ALL-UNNAMED',
'java.base/jdk.internal.util.jar=ALL-UNNAMED'
]

final testAddOpens = [
Expand Down
3 changes: 2 additions & 1 deletion scripts/docker/dockertest.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ final runtimeAddOpens = [
'jdk.jfr/jdk.jfr.internal.management=ALL-UNNAMED',
'java.base/jdk.internal.module=ALL-UNNAMED',
'java.base/java.lang.module=ALL-UNNAMED',
'java.security.jgss/sun.security.krb5=ALL-UNNAMED'
'java.security.jgss/sun.security.krb5=ALL-UNNAMED',
'java.base/jdk.internal.util.jar=ALL-UNNAMED'
]

final testAddOpens = [
Expand Down

0 comments on commit 4b90179

Please sign in to comment.