[java-idp-oidc] 01/02: Move Nashorn dependency global for newer Java.

Scott Cantor cantor.2 at osu.edu
Thu Feb 8 15:58:28 UTC 2024


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch main
in repository java-idp-oidc.

View the commit online:
http://git.shibboleth.net/view/?p=java-idp-oidc.git;a=commit;h=5209e15cbac080eab97506185cf4e284065f3456

commit 5209e15cbac080eab97506185cf4e284065f3456
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Feb 8 10:58:12 2024 -0500

    Move Nashorn dependency global for newer Java.
---
 idp-oidc-extension-impl/pom.xml | 27 +++++++--------------------
 1 file changed, 7 insertions(+), 20 deletions(-)

diff --git a/idp-oidc-extension-impl/pom.xml b/idp-oidc-extension-impl/pom.xml
index e3703488..235e42a7 100644
--- a/idp-oidc-extension-impl/pom.xml
+++ b/idp-oidc-extension-impl/pom.xml
@@ -512,27 +512,14 @@
             <artifactId>hsqldb</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.openjdk.nashorn</groupId>
+            <artifactId>nashorn-core</artifactId>
+            <version>${nashorn.jdk.version}</version>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
-    <profiles>
-        <!--
-            Pull in a Javascript engine for testing in Java
-            versions where the JDK doesn't provide one.
-        -->
-        <profile>
-            <id>get-nashorn</id>
-            <activation>
-                <jdk>[15,</jdk>
-            </activation>
-            <dependencies>
-                <dependency>
-		    <groupId>org.openjdk.nashorn</groupId>
-		    <artifactId>nashorn-core</artifactId>
-		    <version>${nashorn.jdk.version}</version>
-                    <scope>test</scope>
-                </dependency>
-            </dependencies>
-        </profile>
-    </profiles>
+
     <build>
         <plugins>
              <plugin>

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list