[java-oidc-common] branch main updated: JPAR-212 - Migrate javadoc links into individual projects
Scott Cantor
cantor.2 at osu.edu
Tue Sep 19 19:36:00 UTC 2023
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-oidc-common.
View the commit online:
http://git.shibboleth.net/view/?p=java-oidc-common.git;a=commit;h=2068bb1eeade9d0e0addcd547e1b0f00ed6f1deb
The following commit(s) were added to refs/heads/main by this push:
new 2068bb1 JPAR-212 - Migrate javadoc links into individual projects
2068bb1 is described below
commit 2068bb1eeade9d0e0addcd547e1b0f00ed6f1deb
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Sep 19 14:35:27 2023 -0500
JPAR-212 - Migrate javadoc links into individual projects
https://shibboleth.atlassian.net/browse/JPAR-212
Also add missing shib-profile/attribute/metadata deps.
---
pom.xml | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/pom.xml b/pom.xml
index bffa7b1..ebe01e3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,6 +20,9 @@
<oidc-common.groupId>net.shibboleth.oidc</oidc-common.groupId>
<idp.groupId>net.shibboleth.idp</idp.groupId>
<idp.version>5.0.0</idp.version>
+ <shib-profile.version>5.0.0</shib-profile.version>
+ <shib-attribute.version>5.0.0</shib-attribute.version>
+ <shib-metadata.version>5.0.0</shib-metadata.version>
<opensaml.groupId>org.opensaml</opensaml.groupId>
<opensaml.version>5.0.0</opensaml.version>
<nimbus-jose-jwt.version>9.29</nimbus-jose-jwt.version>
@@ -29,6 +32,9 @@
<nimbus.lang.tag.version>1.7</nimbus.lang.tag.version>
<nimbus.content.type.version>2.2</nimbus.content.type.version>
<checkstyle.configLocation>${project.basedir}/resources/checkstyle/checkstyle.xml</checkstyle.configLocation>
+
+ <!-- TODO: Remove once in project parent: Base URL for all our deployed javadocs. -->
+ <javadoc.url>https://shibboleth.net/api</javadoc.url>
</properties>
<repositories>
<repository>
@@ -202,6 +208,28 @@
<type>pom</type>
<scope>import</scope>
</dependency>
+ <!-- Import Dependencies: Shib-Metadata/Attribute/Profile -->
+ <dependency>
+ <groupId>${shib-shared.groupId}</groupId>
+ <artifactId>shib-profile-bom</artifactId>
+ <version>${shib-profile.version}</version>
+ <type>pom</type>
+ <scope>import</scope>
+ </dependency>
+ <dependency>
+ <groupId>${shib-shared.groupId}</groupId>
+ <artifactId>shib-attribute-bom</artifactId>
+ <version>${shib-attribute.version}</version>
+ <type>pom</type>
+ <scope>import</scope>
+ </dependency>
+ <dependency>
+ <groupId>${shib-shared.groupId}</groupId>
+ <artifactId>shib-metadata-bom</artifactId>
+ <version>${shib-metadata.version}</version>
+ <type>pom</type>
+ <scope>import</scope>
+ </dependency>
<!-- Shibboleth Shared BOM dependencies -->
<dependency>
<groupId>${shib-shared.groupId}</groupId>
@@ -230,6 +258,20 @@
<build>
<plugins>
+ <plugin>
+ <groupId>net.shibboleth.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <links combine.children="append">
+ <link>${javadoc.url}/java-shib-shared/${shib-shared.version}</link>
+ <link>${javadoc.url}/java-opensaml/${opensaml.version}</link>
+ <link>${javadoc.url}/java-shib-metadata/${shib-metadata.version}</link>
+ <link>${javadoc.url}/java-shib-attribute/${shib-attribute.version}</link>
+ <link>${javadoc.url}/java-shib-profile/${shib-profile.version}</link>
+ <link>${javadoc.url}/java-identity-provider/${idp.version}</link>
+ </links>
+ </configuration>
+ </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list