[java-oidc-common] branch main updated: Add project name property to POM.

Scott Cantor cantor.2 at osu.edu
Thu Jan 25 16:10:47 UTC 2024


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=f21ffe231b797cb49fcfcf56cd097d19656d2246

The following commit(s) were added to refs/heads/main by this push:
     new f21ffe2  Add project name property to POM.
f21ffe2 is described below

commit f21ffe231b797cb49fcfcf56cd097d19656d2246
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Jan 25 11:10:43 2024 -0500

    Add project name property to POM.
---
 pom.xml | 69 ++++++++++++++++++++++++++---------------------------------------
 1 file changed, 27 insertions(+), 42 deletions(-)

diff --git a/pom.xml b/pom.xml
index 5b8371b..d9e7fc0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,18 +3,38 @@
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>net.shibboleth</groupId>
         <artifactId>parent</artifactId>
         <version>17.0.2</version>
     </parent>
+
     <groupId>net.shibboleth.oidc</groupId>
     <artifactId>oidc-common-parent</artifactId>
     <version>3.1.0-SNAPSHOT</version>
     <name>Shibboleth IdP :: Plugins :: OIDC Common :: Parent</name>
     <packaging>pom</packaging>
     <description>A POM containing properties, dependencies, etc. that are common across all Shibboleth OIDC Java common libraries.</description>
+
+    <modules>
+        <module>oidc-common-attribute-api</module>
+        <module>oidc-common-attribute-impl</module>
+        <module>oidc-common-crypto-api</module>
+        <module>oidc-common-crypto-impl</module>
+        <module>oidc-common-metadata-api</module>
+        <module>oidc-common-metadata-impl</module>
+        <module>oidc-common-profile-api</module>
+        <module>oidc-common-profile-impl</module>
+        <module>oidc-common-saml-api</module>
+        <module>oidc-common-saml-impl</module>
+        <module>oidc-common-plugin</module>
+        <module>oidc-common-bom</module>
+        <module>oidc-common-dist</module>
+    </modules>
+
     <properties>
+        <shibboleth.projectName>java-oidc-common</shibboleth.projectName>
         <shib-shared.groupId>net.shibboleth</shib-shared.groupId>
         <shib-shared.version>9.0.0</shib-shared.version>
         <oidc-common.groupId>net.shibboleth.oidc</oidc-common.groupId>
@@ -39,33 +59,7 @@
         <!-- TODO: Remove once in project parent: Base URL for all our deployed javadocs. -->
         <javadoc.url>https://shibboleth.net/api</javadoc.url>
     </properties>
-    <repositories>
-        <repository>
-            <id>shib-release</id>
-            <url>https://build.shibboleth.net/nexus/content/groups/public</url>
-            <snapshots>
-                <enabled>false</enabled>
-            </snapshots>
-        </repository>
-        <repository>
-            <id>shib-snapshot</id>
-            <url>https://build.shibboleth.net/nexus/content/repositories/snapshots</url>
-            <releases>
-                <enabled>false</enabled>
-            </releases>
-        </repository>
-    </repositories>
-    <scm>
-        <connection>${shibboleth.scm.connection}java-oidc-common</connection>
-        <developerConnection>${shibboleth.scm.developerConnection}java-oidc-common</developerConnection>
-        <url>${shibboleth.scm.url}java-oidc-common.git</url>
-    </scm>
-    <distributionManagement>
-        <site>
-            <id>site</id>
-            <url>scp:${shibboleth.site.deploy.url}java-oidc-common/${project.version}/</url>
-        </site>
-    </distributionManagement>
+
     <dependencies>
         <dependency>
             <groupId>${slf4j.groupId}</groupId>
@@ -248,21 +242,12 @@
             </dependency>
         </dependencies>
     </dependencyManagement>
-    <modules>
-        <module>oidc-common-attribute-api</module>
-        <module>oidc-common-attribute-impl</module>
-        <module>oidc-common-crypto-api</module>
-        <module>oidc-common-crypto-impl</module>
-        <module>oidc-common-metadata-api</module>
-        <module>oidc-common-metadata-impl</module>
-        <module>oidc-common-profile-api</module>
-        <module>oidc-common-profile-impl</module>
-        <module>oidc-common-saml-api</module>
-        <module>oidc-common-saml-impl</module>
-        <module>oidc-common-plugin</module>
-        <module>oidc-common-bom</module>
-        <module>oidc-common-dist</module>
-    </modules>
+
+    <scm>  
+        <connection>${shibboleth.scm.connection}${shibboleth.projectName}</connection>
+        <developerConnection>${shibboleth.scm.developerConnection}${shibboleth.projectName}</developerConnection>
+        <url>${shibboleth.scm.url}${shibboleth.projectName}.git</url>
+    </scm>
 
     <build>
         <plugins>

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


More information about the commits mailing list