[java-idp-plugin-oidc-config] branch main updated: GEN-269 - Replace code header
Scott Cantor
cantor.2 at osu.edu
Tue Aug 1 16:08:37 UTC 2023
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-idp-plugin-oidc-config.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-plugin-oidc-config.git;a=commit;h=9436e4ce9d067e4680eb44d195a354d80da2928e
The following commit(s) were added to refs/heads/main by this push:
new 9436e4c GEN-269 - Replace code header
9436e4c is described below
commit 9436e4ce9d067e4680eb44d195a354d80da2928e
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Aug 1 12:08:34 2023 -0400
GEN-269 - Replace code header
https://shibboleth.atlassian.net/browse/GEN-269
Relocate checkstyle.
---
.checkstyle | 7 -------
.gitignore | 13 +++++--------
oidc-config-impl/.checkstyle | 11 +++++++++++
.../shibboleth/idp/plugin/oidc/config/OIDCConfigModule.java | 9 +++------
.../shibboleth/idp/plugin/oidc/config/OIDCConfigPlugin.java | 9 +++------
.../net/shibboleth/idp/plugin/oidc/config/package-info.java | 9 +++------
checkstyle.xml => resources/checkstyle/checkstyle.xml | 0
7 files changed, 25 insertions(+), 33 deletions(-)
diff --git a/.checkstyle b/.checkstyle
deleted file mode 100644
index cdc0831..0000000
--- a/.checkstyle
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<fileset-config file-format-version="1.2.0" simple-config="true" sync-formatter="false">
- <fileset name="all" enabled="true" check-config-name="Shibboleth Checkstyle" local="false">
- <file-match-pattern match-pattern="." include-pattern="true"/>
- </fileset>
-</fileset-config>
diff --git a/.gitignore b/.gitignore
index 12bfa79..be8f0d5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,13 +1,10 @@
-.classpath
*/bin
.DS_Store
-*/target
-*/test-output
*~
-*/.classpath
-*/.project
-*/.settings
-/.project
-/.settings
+.classpath
+.project
+.settings
+.vscode
target
+test-output
/bin/
diff --git a/oidc-config-impl/.checkstyle b/oidc-config-impl/.checkstyle
new file mode 100644
index 0000000..94f1e39
--- /dev/null
+++ b/oidc-config-impl/.checkstyle
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<fileset-config file-format-version="1.2.0" simple-config="false" sync-formatter="false">
+
+ <local-check-config name="Shibboleth Checkstyle" location="/java-idp-plugin-oidc-config/resources/checkstyle/checkstyle.xml" type="project" description=""/>
+
+ <fileset name="main source" enabled="true" check-config-name="Shibboleth Checkstyle" local="true">
+ <file-match-pattern match-pattern="src/main/java/.*\.java$" include-pattern="true"/>
+ </fileset>
+
+</fileset-config>
diff --git a/oidc-config-impl/src/main/java/net/shibboleth/idp/plugin/oidc/config/OIDCConfigModule.java b/oidc-config-impl/src/main/java/net/shibboleth/idp/plugin/oidc/config/OIDCConfigModule.java
index d1fe91c..0f239e8 100644
--- a/oidc-config-impl/src/main/java/net/shibboleth/idp/plugin/oidc/config/OIDCConfigModule.java
+++ b/oidc-config-impl/src/main/java/net/shibboleth/idp/plugin/oidc/config/OIDCConfigModule.java
@@ -1,10 +1,7 @@
/*
- * Licensed to the University Corporation for Advanced Internet Development,
- * Inc. (UCAID) under one or more contributor license agreements. See the
- * NOTICE file distributed with this work for additional information regarding
- * copyright ownership. The UCAID licenses this file to You under the Apache
- * License, Version 2.0 (the "License"); you may not use this file except in
- * compliance with the License. You may obtain a copy of the License at
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
diff --git a/oidc-config-impl/src/main/java/net/shibboleth/idp/plugin/oidc/config/OIDCConfigPlugin.java b/oidc-config-impl/src/main/java/net/shibboleth/idp/plugin/oidc/config/OIDCConfigPlugin.java
index 66dbdee..3778370 100644
--- a/oidc-config-impl/src/main/java/net/shibboleth/idp/plugin/oidc/config/OIDCConfigPlugin.java
+++ b/oidc-config-impl/src/main/java/net/shibboleth/idp/plugin/oidc/config/OIDCConfigPlugin.java
@@ -1,10 +1,7 @@
/*
- * Licensed to the University Corporation for Advanced Internet Development,
- * Inc. (UCAID) under one or more contributor license agreements. See the
- * NOTICE file distributed with this work for additional information regarding
- * copyright ownership. The UCAID licenses this file to You under the Apache
- * License, Version 2.0 (the "License"); you may not use this file except in
- * compliance with the License. You may obtain a copy of the License at
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
diff --git a/oidc-config-impl/src/main/java/net/shibboleth/idp/plugin/oidc/config/package-info.java b/oidc-config-impl/src/main/java/net/shibboleth/idp/plugin/oidc/config/package-info.java
index 44bf245..df25cbe 100644
--- a/oidc-config-impl/src/main/java/net/shibboleth/idp/plugin/oidc/config/package-info.java
+++ b/oidc-config-impl/src/main/java/net/shibboleth/idp/plugin/oidc/config/package-info.java
@@ -1,10 +1,7 @@
/*
- * Licensed to the University Corporation for Advanced Internet Development,
- * Inc. (UCAID) under one or more contributor license agreements. See the
- * NOTICE file distributed with this work for additional information regarding
- * copyright ownership. The UCAID licenses this file to You under the Apache
- * License, Version 2.0 (the "License"); you may not use this file except in
- * compliance with the License. You may obtain a copy of the License at
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
diff --git a/checkstyle.xml b/resources/checkstyle/checkstyle.xml
similarity index 100%
rename from checkstyle.xml
rename to resources/checkstyle/checkstyle.xml
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list