[java-oidc-common] branch main updated: Update checkstyle property for site builds.

Scott Cantor cantor.2 at osu.edu
Wed Aug 2 15:56:06 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=ce335a116c40e058bb5ac493209fa86bfcb0057d

The following commit(s) were added to refs/heads/main by this push:
     new ce335a1  Update checkstyle property for site builds.
ce335a1 is described below

commit ce335a116c40e058bb5ac493209fa86bfcb0057d
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Aug 2 11:56:03 2023 -0400

    Update checkstyle property for site builds.
---
 oidc-common-attribute-api/pom.xml  | 2 +-
 oidc-common-attribute-impl/pom.xml | 2 +-
 oidc-common-crypto-api/pom.xml     | 2 +-
 oidc-common-crypto-impl/pom.xml    | 2 +-
 oidc-common-dist/pom.xml           | 2 +-
 oidc-common-metadata-api/pom.xml   | 2 +-
 oidc-common-metadata-impl/pom.xml  | 2 +-
 oidc-common-plugin/pom.xml         | 2 +-
 oidc-common-profile-api/pom.xml    | 2 +-
 oidc-common-profile-impl/pom.xml   | 2 +-
 oidc-common-saml-api/pom.xml       | 2 +-
 oidc-common-saml-impl/pom.xml      | 2 +-
 pom.xml                            | 2 +-
 13 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/oidc-common-attribute-api/pom.xml b/oidc-common-attribute-api/pom.xml
index 2fe6eac..5c7b70f 100644
--- a/oidc-common-attribute-api/pom.xml
+++ b/oidc-common-attribute-api/pom.xml
@@ -14,7 +14,7 @@
     <description>Interfaces for common OIDC attributes.</description>
 
     <properties>
-        <checkstyle.configLocation>${project.basedir}/../checkstyle.xml</checkstyle.configLocation>
+        <checkstyle.configLocation>${project.basedir}/../resources/checkstyle/checkstyle.xml</checkstyle.configLocation>
         <automatic.module.name>net.shibboleth.oidc.attribute.api</automatic.module.name>
     </properties>
 
diff --git a/oidc-common-attribute-impl/pom.xml b/oidc-common-attribute-impl/pom.xml
index c612d93..f965a48 100644
--- a/oidc-common-attribute-impl/pom.xml
+++ b/oidc-common-attribute-impl/pom.xml
@@ -15,7 +15,7 @@
     <description>Implementation for common OIDC attribute functions/features.</description>
 
     <properties>
-        <checkstyle.configLocation>${project.basedir}/../checkstyle.xml</checkstyle.configLocation>
+        <checkstyle.configLocation>${project.basedir}/../resources/checkstyle/checkstyle.xml</checkstyle.configLocation>
         <automatic.module.name>net.shibboleth.oidc.attribute.impl</automatic.module.name>
     </properties>
 
diff --git a/oidc-common-crypto-api/pom.xml b/oidc-common-crypto-api/pom.xml
index 9687ee7..250217a 100644
--- a/oidc-common-crypto-api/pom.xml
+++ b/oidc-common-crypto-api/pom.xml
@@ -14,7 +14,7 @@
     <description>Interfaces for common crypto/security functions/features.</description>
 
     <properties>
-        <checkstyle.configLocation>${project.basedir}/../checkstyle.xml</checkstyle.configLocation>
+        <checkstyle.configLocation>${project.basedir}/../resources/checkstyle/checkstyle.xml</checkstyle.configLocation>
         <automatic.module.name>net.shibboleth.oidc.crypto.api</automatic.module.name>
     </properties>
 
diff --git a/oidc-common-crypto-impl/pom.xml b/oidc-common-crypto-impl/pom.xml
index 71c5b55..64210b0 100644
--- a/oidc-common-crypto-impl/pom.xml
+++ b/oidc-common-crypto-impl/pom.xml
@@ -14,7 +14,7 @@
     <description>Implementation for common crypto/security functions/features.</description>
 
     <properties>
-        <checkstyle.configLocation>${project.basedir}/../checkstyle.xml</checkstyle.configLocation>
+        <checkstyle.configLocation>${project.basedir}/../resources/checkstyle/checkstyle.xml</checkstyle.configLocation>
         <automatic.module.name>net.shibboleth.oidc.crypto.impl</automatic.module.name>
     </properties>
 
diff --git a/oidc-common-dist/pom.xml b/oidc-common-dist/pom.xml
index a25eb31..c90efd8 100644
--- a/oidc-common-dist/pom.xml
+++ b/oidc-common-dist/pom.xml
@@ -14,7 +14,7 @@
     <packaging>pom</packaging>
 
     <properties>
-        <checkstyle.configLocation>${project.basedir}/../checkstyle.xml</checkstyle.configLocation>
+        <checkstyle.configLocation>${project.basedir}/../resources/checkstyle/checkstyle.xml</checkstyle.configLocation>
         <dist.finalName>shibboleth-idp-plugin-oidc-common-${project.version}</dist.finalName>
         <dist.assemblyDirectory>${project.build.directory}/${dist.finalName}</dist.assemblyDirectory>
     </properties>
diff --git a/oidc-common-metadata-api/pom.xml b/oidc-common-metadata-api/pom.xml
index 6f1e272..8589c38 100644
--- a/oidc-common-metadata-api/pom.xml
+++ b/oidc-common-metadata-api/pom.xml
@@ -14,7 +14,7 @@
     <description>Interfaces for common OIDC RP metadata functions/features.</description>
 
     <properties>
-        <checkstyle.configLocation>${project.basedir}/../checkstyle.xml</checkstyle.configLocation>
+        <checkstyle.configLocation>${project.basedir}/../resources/checkstyle/checkstyle.xml</checkstyle.configLocation>
         <automatic.module.name>net.shibboleth.oidc.metadata.api</automatic.module.name>
     </properties>
 
diff --git a/oidc-common-metadata-impl/pom.xml b/oidc-common-metadata-impl/pom.xml
index 3a44f94..da5e013 100644
--- a/oidc-common-metadata-impl/pom.xml
+++ b/oidc-common-metadata-impl/pom.xml
@@ -15,7 +15,7 @@
     <description>Implementation for common OIDC RP metadata functions/features.</description>
 
     <properties>
-        <checkstyle.configLocation>${project.basedir}/../checkstyle.xml</checkstyle.configLocation>
+        <checkstyle.configLocation>${project.basedir}/../resources/checkstyle/checkstyle.xml</checkstyle.configLocation>
         <automatic.module.name>net.shibboleth.oidc.metadata.impl</automatic.module.name>
     </properties>
 
diff --git a/oidc-common-plugin/pom.xml b/oidc-common-plugin/pom.xml
index e784692..4015630 100644
--- a/oidc-common-plugin/pom.xml
+++ b/oidc-common-plugin/pom.xml
@@ -13,7 +13,7 @@
     <description>Plugin configuration module of the common OIDC plugin</description>
 
     <properties>
-        <checkstyle.configLocation>${project.basedir}/../checkstyle.xml</checkstyle.configLocation>
+        <checkstyle.configLocation>${project.basedir}/../resources/checkstyle/checkstyle.xml</checkstyle.configLocation>
         <automatic.module.name>net.shibboleth.oidc.common</automatic.module.name>
     </properties>
 
diff --git a/oidc-common-profile-api/pom.xml b/oidc-common-profile-api/pom.xml
index cabd72e..3cfcfb1 100644
--- a/oidc-common-profile-api/pom.xml
+++ b/oidc-common-profile-api/pom.xml
@@ -13,7 +13,7 @@
     <description>Interfaces for common OIDC RP profile configuration functions/features.</description>
 
     <properties>
-        <checkstyle.configLocation>${project.basedir}/../checkstyle.xml</checkstyle.configLocation>
+        <checkstyle.configLocation>${project.basedir}/../resources/checkstyle/checkstyle.xml</checkstyle.configLocation>
         <automatic.module.name>net.shibboleth.oidc.profile.api</automatic.module.name>
     </properties>
 
diff --git a/oidc-common-profile-impl/pom.xml b/oidc-common-profile-impl/pom.xml
index 5edcc40..a51f2a3 100644
--- a/oidc-common-profile-impl/pom.xml
+++ b/oidc-common-profile-impl/pom.xml
@@ -13,7 +13,7 @@
     <description>Implementation for common OIDC RP profile configuration functions/features.</description>
 
     <properties>
-        <checkstyle.configLocation>${project.basedir}/../checkstyle.xml</checkstyle.configLocation>
+        <checkstyle.configLocation>${project.basedir}/../resources/checkstyle/checkstyle.xml</checkstyle.configLocation>
         <automatic.module.name>net.shibboleth.oidc.profile.impl</automatic.module.name>
     </properties>
 
diff --git a/oidc-common-saml-api/pom.xml b/oidc-common-saml-api/pom.xml
index ae4a202..7b7efd4 100644
--- a/oidc-common-saml-api/pom.xml
+++ b/oidc-common-saml-api/pom.xml
@@ -14,7 +14,7 @@
     <description>Schema and corresponding XMLObject interfaces for the SAML metadata extension for OIDC RPs.</description>
 
     <properties>
-        <checkstyle.configLocation>${project.basedir}/../checkstyle.xml</checkstyle.configLocation>
+        <checkstyle.configLocation>${project.basedir}/../resources/checkstyle/checkstyle.xml</checkstyle.configLocation>
         <automatic.module.name>net.shibboleth.oidc.saml.api</automatic.module.name>
     </properties>
 
diff --git a/oidc-common-saml-impl/pom.xml b/oidc-common-saml-impl/pom.xml
index 2035281..7dc5237 100644
--- a/oidc-common-saml-impl/pom.xml
+++ b/oidc-common-saml-impl/pom.xml
@@ -14,7 +14,7 @@
     <description>Implementation and OpenSAML configuration for the SAML metadata extension for OIDC RPs.</description>
 
     <properties>
-        <checkstyle.configLocation>${project.basedir}/../checkstyle.xml</checkstyle.configLocation>
+        <checkstyle.configLocation>${project.basedir}/../resources/checkstyle/checkstyle.xml</checkstyle.configLocation>
         <automatic.module.name>net.shibboleth.oidc.saml.impl</automatic.module.name>
     </properties>
 
diff --git a/pom.xml b/pom.xml
index e8ef82c..3f8a132 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,7 +27,7 @@
         <accessors.smart.version>1.2</accessors.smart.version>
         <nimbus.lang.tag.version>1.7</nimbus.lang.tag.version>
         <nimbus.content.type.version>2.2</nimbus.content.type.version>
-        <checkstyle.configLocation>${project.basedir}/checkstyle.xml</checkstyle.configLocation>
+        <checkstyle.configLocation>${project.basedir}/resources/checkstyle/checkstyle.xml</checkstyle.configLocation>
     </properties>
     <repositories>
         <repository>

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


More information about the commits mailing list