[java-opensaml] branch master updated: OSR-320 Add GraalVM as test dependency.
Rod Widdowson
rdw at steadingsoftware.com
Sun Jun 21 12:34:09 UTC 2020
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch master
in repository java-opensaml.
View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=471a7c436904fb5435d25b412cd9a45504b5323f
The following commit(s) were added to refs/heads/master by this push:
new 471a7c436 OSR-320 Add GraalVM as test dependency.
471a7c436 is described below
commit 471a7c436904fb5435d25b412cd9a45504b5323f
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Sat Jun 20 16:56:23 2020 +0100
OSR-320 Add GraalVM as test dependency.
https://issues.shibboleth.net/jira/browse/OSJ-320
This will ne needed from JDK15 on.
---
opensaml-saml-impl/pom.xml | 13 +++++++++++++
.../java/org/opensaml/security/crypto/KeySupportTest.java | 2 +-
2 files changed, 14 insertions(+), 1 deletion(-)
diff --git a/opensaml-saml-impl/pom.xml b/opensaml-saml-impl/pom.xml
index 2e720ba35..d2c84d6db 100644
--- a/opensaml-saml-impl/pom.xml
+++ b/opensaml-saml-impl/pom.xml
@@ -224,6 +224,19 @@
<artifactId>jsoup</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.graalvm.sdk</groupId>
+ <artifactId>graal-sdk</artifactId>
+ <version>${graalvm.version}</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.graalvm.js</groupId>
+ <artifactId>js</artifactId>
+ <version>${graalvm.version}</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
diff --git a/opensaml-security-api/src/test/java/org/opensaml/security/crypto/KeySupportTest.java b/opensaml-security-api/src/test/java/org/opensaml/security/crypto/KeySupportTest.java
index 39afa93b1..4c7900e03 100644
--- a/opensaml-security-api/src/test/java/org/opensaml/security/crypto/KeySupportTest.java
+++ b/opensaml-security-api/src/test/java/org/opensaml/security/crypto/KeySupportTest.java
@@ -211,7 +211,7 @@ public class KeySupportTest {
}
}
- @Test
+ @Test(enabled=false)
public void testKeyLength() throws NoSuchAlgorithmException, NoSuchProviderException {
KeyPair kp = null;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list