Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions buildenv/jenkins/openjdk_tests
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,14 @@ def runTest() {
]
}
}
if (params.TEST_FLAG == "OpenJCEPlus") {
def javaSecurityFile = "${env.WORKSPACE}/aqa-tests/config/openjceplus/jdk${params.JDK_VERSION}/java.security"
if (!fileExists(javaSecurityFile)) {
javaSecurityFile = "${env.WORKSPACE}/aqa-tests/config/openjceplus/jdk/java.security"
}
echo "Set -Djava.security.properties=${javaSecurityFile} in EXTRA_OPTIONS"
env.EXTRA_OPTIONS += " -Djava.security.properties=${javaSecurityFile}"
}
jenkinsfile = load "${WORKSPACE}/aqa-tests/buildenv/jenkins/JenkinsfileBase"
if (LABEL.contains('ci.agent.dynamic') && CLOUD_PROVIDER.equals('azure')) {
//Set dockerimage for azure agent. Fyre has stencil to setup the right environment
Expand Down
16 changes: 16 additions & 0 deletions config/openjceplus/jdk/java.security
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Add OpenJCEPlus to the top of the provider list. This file should be kept in sync with
# the out of the box security provider list except for placing OpenJCEPlus at the highest
# priority.
security.provider.1=com.ibm.crypto.plus.provider.OpenJCEPlus
security.provider.2=SUN
security.provider.3=SunRsaSign
security.provider.4=SunEC
security.provider.5=SunJSSE
security.provider.6=SunJCE
security.provider.7=SunJGSS
security.provider.8=SunSASL
security.provider.9=XMLDSig
security.provider.10=SunPCSC
security.provider.11=JdkLDAP
security.provider.12=JdkSASL
security.provider.13=SunPKCS11
16 changes: 16 additions & 0 deletions config/openjceplus/jdk21/java.security
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Add OpenJCEPlus to the top of the provider list. This file should be kept in sync with
# the out of the box security provider list except for placing OpenJCEPlus at the highest
# priority.
security.provider.1=com.ibm.crypto.plus.provider.OpenJCEPlus
security.provider.2=SUN
security.provider.3=SunRsaSign
security.provider.4=SunEC
security.provider.5=SunJSSE
security.provider.6=SunJCE
security.provider.7=SunJGSS
security.provider.8=SunSASL
security.provider.9=XMLDSig
security.provider.10=SunPCSC
security.provider.11=JdkLDAP
security.provider.12=JdkSASL
security.provider.13=SunPKCS11