[java-identity-provider] branch master updated: IDP-380 - Review idp-conf Maven dependencies
Scott Cantor
cantor.2 at osu.edu
Wed Jul 8 17:12:56 UTC 2020
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch master
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=21addf09ed257d37b57724f3c1bab8d480261db4
The following commit(s) were added to refs/heads/master by this push:
new 21addf09e IDP-380 - Review idp-conf Maven dependencies
21addf09e is described below
commit 21addf09ed257d37b57724f3c1bab8d480261db4
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Jul 8 13:13:04 2020 -0400
IDP-380 - Review idp-conf Maven dependencies
https://issues.shibboleth.net/jira/browse/IDP-380
Attempt to fix this again.
---
idp-conf/pom.xml | 87 ++++++++++++++++++++++++++++++++++++++++----------------
1 file changed, 62 insertions(+), 25 deletions(-)
diff --git a/idp-conf/pom.xml b/idp-conf/pom.xml
index 0e4f9f996..337dacc5e 100644
--- a/idp-conf/pom.xml
+++ b/idp-conf/pom.xml
@@ -26,76 +26,78 @@
<!-- Provided Dependencies -->
<!-- Runtime Dependencies -->
- <!-- These are declared for STS tooling support in Eclipse. -->
+ <!-- These are declared for STS tooling support in Eclipse. Considering removal. -->
+ <!--
<dependency>
<groupId>${opensaml.groupId}</groupId>
<artifactId>opensaml-saml-api</artifactId>
- <optional>true</optional>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>${opensaml.groupId}</groupId>
<artifactId>opensaml-saml-impl</artifactId>
- <optional>true</optional>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>${opensaml.groupId}</groupId>
<artifactId>opensaml-messaging-impl</artifactId>
- <optional>true</optional>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>idp-profile-impl</artifactId>
<version>${project.version}</version>
- <optional>true</optional>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>idp-admin-impl</artifactId>
<version>${project.version}</version>
- <optional>true</optional>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>idp-authn-impl</artifactId>
<version>${project.version}</version>
- <optional>true</optional>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>idp-cas-impl</artifactId>
<version>${project.version}</version>
- <optional>true</optional>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>idp-session-impl</artifactId>
<version>${project.version}</version>
- <optional>true</optional>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>idp-saml-api</artifactId>
<version>${project.version}</version>
- <optional>true</optional>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>idp-saml-impl</artifactId>
<version>${project.version}</version>
- <optional>true</optional>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>idp-ui</artifactId>
<version>${project.version}</version>
- <optional>true</optional>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>idp-consent-impl</artifactId>
<version>${project.version}</version>
- <optional>true</optional>
+ <scope>runtime</scope>
</dependency>
+ -->
<!-- Test Dependencies -->
<dependency>
@@ -103,6 +105,11 @@
<artifactId>unboundid-ldapsdk</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>${opensaml.groupId}</groupId>
+ <artifactId>opensaml-messaging-impl</artifactId>
+ <scope>test</scope>
+ </dependency>
<dependency>
<groupId>${opensaml.groupId}</groupId>
<artifactId>opensaml-profile-impl</artifactId>
@@ -119,6 +126,12 @@
<artifactId>opensaml-storage-impl</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>idp-admin-impl</artifactId>
+ <version>${project.version}</version>
+ <scope>test</scope>
+ </dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>idp-attribute-filter-spring</artifactId>
@@ -131,12 +144,36 @@
<version>${project.version}</version>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>idp-authn-impl</artifactId>
+ <version>${project.version}</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>idp-cas-impl</artifactId>
+ <version>${project.version}</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>idp-consent-impl</artifactId>
+ <version>${project.version}</version>
+ <scope>test</scope>
+ </dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>idp-profile-spring</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>idp-session-impl</artifactId>
+ <version>${project.version}</version>
+ <scope>test</scope>
+ </dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
@@ -152,39 +189,39 @@
<artifactId>janino</artifactId>
<scope>test</scope>
</dependency>
-
- <dependency>
+
+ <dependency>
<groupId>${spring.groupId}</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
- <groupId>net.shibboleth.utilities</groupId>
- <artifactId>java-support</artifactId>
- <type>test-jar</type>
- <scope>test</scope>
+ <groupId>net.shibboleth.utilities</groupId>
+ <artifactId>java-support</artifactId>
+ <type>test-jar</type>
+ <scope>test</scope>
</dependency>
+
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>test</scope>
</dependency>
- <!-- We need these even if mvn dependency:analyze says we don't - loaded by service interface -->
- <dependency>
+ <!-- We need these even if mvn dependency:analyze says we don't - loaded by service interface -->
+ <dependency>
<groupId>org.graalvm.js</groupId>
<artifactId>js</artifactId>
<version>${graalvm.version}</version>
<scope>test</scope>
</dependency>
<dependency>
- <groupId>org.graalvm.sdk</groupId>
- <artifactId>graal-sdk</artifactId>
- <version>${graalvm.version}</version>
+ <groupId>org.graalvm.sdk</groupId>
+ <artifactId>graal-sdk</artifactId>
+ <version>${graalvm.version}</version>
<scope>test</scope>
</dependency>
-
</dependencies>
<scm>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list