[java-identity-provider] branch dev/IDP-2183 updated: IDP-2195 - Replace BOMs in idp-parent with inlined dependency mgmt.
Scott Cantor
cantor.2 at osu.edu
Wed Nov 1 17:57:18 UTC 2023
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch dev/IDP-2183
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=791fa834411f9e4606a574d0f0ecf90fb951c083
The following commit(s) were added to refs/heads/dev/IDP-2183 by this push:
new 791fa8344 IDP-2195 - Replace BOMs in idp-parent with inlined dependency mgmt.
791fa8344 is described below
commit 791fa834411f9e4606a574d0f0ecf90fb951c083
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Nov 1 13:57:15 2023 -0400
IDP-2195 - Replace BOMs in idp-parent with inlined dependency mgmt.
https://shibboleth.atlassian.net/browse/IDP-2195
Inlined all of our BOMs.
---
idp-parent/pom.xml | 255 ++++++++++++++++++++++++++++++++++++++++++++++++-----
1 file changed, 233 insertions(+), 22 deletions(-)
diff --git a/idp-parent/pom.xml b/idp-parent/pom.xml
index 97d825a0a..b3f3e7f71 100644
--- a/idp-parent/pom.xml
+++ b/idp-parent/pom.xml
@@ -89,7 +89,6 @@
<dependency>
<groupId>${shib-shared.groupId}</groupId>
<artifactId>shib-support</artifactId>
- <version>${shib-shared.version}</version>
</dependency>
<!-- Provided Dependencies -->
@@ -115,54 +114,266 @@
used by all project modules. -->
<dependencyManagement>
<dependencies>
- <!-- Import Dependencies: Shib-Metadata/Attribute/Profile -->
<dependency>
<groupId>${shib-profile.groupId}</groupId>
- <artifactId>shib-profile-bom</artifactId>
+ <artifactId>shib-profile-api</artifactId>
<version>${shib-profile.version}</version>
- <type>pom</type>
- <scope>import</scope>
+ </dependency>
+ <dependency>
+ <groupId>${shib-profile.groupId}</groupId>
+ <artifactId>shib-profile-impl</artifactId>
+ <version>${shib-profile.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${shib-profile.groupId}</groupId>
+ <artifactId>shib-saml-profile-api</artifactId>
+ <version>${shib-profile.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>${shib-attribute.groupId}</groupId>
+ <artifactId>shib-attribute-api</artifactId>
+ <version>${shib-attribute.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${shib-attribute.groupId}</groupId>
+ <artifactId>shib-attribute-impl</artifactId>
+ <version>${shib-attribute.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${shib-attribute.groupId}</groupId>
+ <artifactId>shib-saml-attribute-api</artifactId>
+ <version>${shib-attribute.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${shib-attribute.groupId}</groupId>
+ <artifactId>shib-saml-attribute-impl</artifactId>
+ <version>${shib-attribute.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${shib-attribute.groupId}</groupId>
+ <artifactId>shib-attribute-filter-api</artifactId>
+ <version>${shib-attribute.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${shib-attribute.groupId}</groupId>
+ <artifactId>shib-attribute-filter-impl</artifactId>
+ <version>${shib-attribute.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${shib-attribute.groupId}</groupId>
+ <artifactId>shib-attribute-filter-spring</artifactId>
+ <version>${shib-attribute.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${shib-attribute.groupId}</groupId>
+ <artifactId>shib-attribute-resolver-api</artifactId>
+ <version>${shib-attribute.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${shib-attribute.groupId}</groupId>
+ <artifactId>shib-attribute-resolver-impl</artifactId>
+ <version>${shib-attribute.version}</version>
</dependency>
<dependency>
<groupId>${shib-attribute.groupId}</groupId>
- <artifactId>shib-attribute-bom</artifactId>
+ <artifactId>shib-attribute-resolver-spring</artifactId>
<version>${shib-attribute.version}</version>
- <type>pom</type>
- <scope>import</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>${shib-metadata.groupId}</groupId>
+ <artifactId>shib-metadata-api</artifactId>
+ <version>${shib-metadata.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${shib-metadata.groupId}</groupId>
+ <artifactId>shib-metadata-impl</artifactId>
+ <version>${shib-metadata.version}</version>
</dependency>
<dependency>
<groupId>${shib-metadata.groupId}</groupId>
- <artifactId>shib-metadata-bom</artifactId>
+ <artifactId>shib-metadata-spring</artifactId>
<version>${shib-metadata.version}</version>
- <type>pom</type>
- <scope>import</scope>
</dependency>
- <!-- Import Dependencies: OpenSAML -->
+ <!-- Compile Dependencies -->
+ <dependency>
+ <groupId>${opensaml.groupId}</groupId>
+ <artifactId>opensaml-core-api</artifactId>
+ <version>${opensaml.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${opensaml.groupId}</groupId>
+ <artifactId>opensaml-core-impl</artifactId>
+ <version>${opensaml.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${opensaml.groupId}</groupId>
+ <artifactId>opensaml-messaging-api</artifactId>
+ <version>${opensaml.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${opensaml.groupId}</groupId>
+ <artifactId>opensaml-messaging-impl</artifactId>
+ <version>${opensaml.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${opensaml.groupId}</groupId>
+ <artifactId>opensaml-profile-api</artifactId>
+ <version>${opensaml.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${opensaml.groupId}</groupId>
+ <artifactId>opensaml-profile-impl</artifactId>
+ <version>${opensaml.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${opensaml.groupId}</groupId>
+ <artifactId>opensaml-saml-api</artifactId>
+ <version>${opensaml.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${opensaml.groupId}</groupId>
+ <artifactId>opensaml-saml-impl</artifactId>
+ <version>${opensaml.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${opensaml.groupId}</groupId>
+ <artifactId>opensaml-security-api</artifactId>
+ <version>${opensaml.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${opensaml.groupId}</groupId>
+ <artifactId>opensaml-security-impl</artifactId>
+ <version>${opensaml.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${opensaml.groupId}</groupId>
+ <artifactId>opensaml-soap-api</artifactId>
+ <version>${opensaml.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${opensaml.groupId}</groupId>
+ <artifactId>opensaml-soap-impl</artifactId>
+ <version>${opensaml.version}</version>
+ </dependency>
<dependency>
<groupId>${opensaml.groupId}</groupId>
- <artifactId>opensaml-bom</artifactId>
+ <artifactId>opensaml-spring</artifactId>
+ <version>${opensaml.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${opensaml.groupId}</groupId>
+ <artifactId>opensaml-storage-api</artifactId>
+ <version>${opensaml.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${opensaml.groupId}</groupId>
+ <artifactId>opensaml-storage-impl</artifactId>
+ <version>${opensaml.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${opensaml.groupId}</groupId>
+ <artifactId>opensaml-xmlsec-api</artifactId>
+ <version>${opensaml.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${opensaml.groupId}</groupId>
+ <artifactId>opensaml-xmlsec-impl</artifactId>
<version>${opensaml.version}</version>
- <type>pom</type>
- <scope>import</scope>
</dependency>
- <!-- Import Dependencies: Shared -->
<dependency>
- <groupId>${shib-shared.groupId}</groupId>
- <artifactId>shib-shared-bom</artifactId>
+ <groupId>${shib-shared.groupId}</groupId>
+ <artifactId>shib-cli</artifactId>
+ <version>${shib-shared.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${shib-shared.groupId}</groupId>
+ <artifactId>shib-networking</artifactId>
+ <version>${shib-shared.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${shib-shared.groupId}</groupId>
+ <artifactId>shib-networking-spring</artifactId>
+ <version>${shib-shared.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${shib-shared.groupId}</groupId>
+ <artifactId>shib-security</artifactId>
+ <version>${shib-shared.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${shib-shared.groupId}</groupId>
+ <artifactId>shib-security-spring</artifactId>
+ <version>${shib-shared.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${shib-shared.groupId}</groupId>
+ <artifactId>shib-service</artifactId>
+ <version>${shib-shared.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${shib-shared.groupId}</groupId>
+ <artifactId>shib-spring</artifactId>
+ <version>${shib-shared.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${shib-shared.groupId}</groupId>
+ <artifactId>shib-support</artifactId>
+ <version>${shib-shared.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${shib-shared.groupId}</groupId>
+ <artifactId>shib-velocity</artifactId>
+ <version>${shib-shared.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${shib-shared.groupId}</groupId>
+ <artifactId>shib-velocity-spring</artifactId>
<version>${shib-shared.version}</version>
- <type>pom</type>
- <scope>import</scope>
</dependency>
-
- <!-- Compile Dependencies -->
<!-- Provided Dependencies -->
<!-- Runtime Dependencies -->
<!-- Test Dependencies -->
+ <dependency>
+ <groupId>${shib-profile.groupId}</groupId>
+ <artifactId>shib-profile-testing</artifactId>
+ <version>${shib-profile.version}</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>${shib-attribute.groupId}</groupId>
+ <artifactId>shib-attribute-testing</artifactId>
+ <version>${shib-attribute.version}</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>${shib-metadata.groupId}</groupId>
+ <artifactId>shib-metadata-testing</artifactId>
+ <version>${shib-metadata.version}</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>${opensaml.groupId}</groupId>
+ <artifactId>opensaml-testing</artifactId>
+ <version>${opensaml.version}</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>${shib-shared.groupId}</groupId>
+ <artifactId>shib-testing</artifactId>
+ <version>${shib-shared.version}</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
</dependencyManagement>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list