[java-parent-project] branch main updated: JPAR-224 - Remove site config as part of minor version bump.

Scott Cantor cantor.2 at osu.edu
Fri Nov 3 18:55: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-parent-project.

View the commit online:
http://git.shibboleth.net/view/?p=java-parent-project.git;a=commit;h=f4650fcfcdc7785520085efd2499a06eb66b1cb1

The following commit(s) were added to refs/heads/main by this push:
     new f4650fc  JPAR-224 - Remove site config as part of minor version bump.
f4650fc is described below

commit f4650fcfcdc7785520085efd2499a06eb66b1cb1
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri Nov 3 14:55:03 2023 -0400

    JPAR-224 - Remove site config as part of minor version bump.
    
    https://shibboleth.atlassian.net/browse/JPAR-224
    
    Some additional properties to be removed after projects are cleaned up.
---
 pom.xml | 147 +---------------------------------------------------------------
 1 file changed, 1 insertion(+), 146 deletions(-)

diff --git a/pom.xml b/pom.xml
index 69bdeb4..857d4d4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
 
     <groupId>net.shibboleth</groupId>
     <artifactId>parent</artifactId>
-    <version>17.0.3-SNAPSHOT</version>
+    <version>17.1.0-SNAPSHOT</version>
     <packaging>pom</packaging>
 
     <name>Shibboleth Project Java 17 Super POM</name>
@@ -95,10 +95,7 @@
         <maven-install-plugin.version>3.0.0-M1</maven-install-plugin.version>
         <maven-jar-plugin.version>3.2.2</maven-jar-plugin.version>
         <maven-javadoc-plugin.version>3.3.0.2</maven-javadoc-plugin.version>
-        <maven-jxr-plugin.version>3.2.0</maven-jxr-plugin.version>
-        <maven-project-info-reports-plugin.version>3.2.2</maven-project-info-reports-plugin.version>
         <maven-resources-plugin.version>3.2.0</maven-resources-plugin.version>
-        <maven-site-plugin.version>3.11.0</maven-site-plugin.version>
         <maven-source-plugin.version>3.2.1</maven-source-plugin.version>
         <maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
         <maven-versions-plugin.version>2.14.1</maven-versions-plugin.version>
@@ -692,23 +689,6 @@
                     <artifactId>maven-resources-plugin</artifactId>
                     <version>${maven-resources-plugin.version}</version>
                 </plugin>
-                <plugin>
-                    <groupId>org.apache.maven.plugins</groupId>
-                    <artifactId>maven-site-plugin</artifactId>
-                    <version>${maven-site-plugin.version}</version>
-                    <dependencies>
-                        <dependency>
-                            <groupId>org.apache.maven.wagon</groupId>
-                            <artifactId>wagon-webdav-jackrabbit</artifactId>
-                            <version>3.5.3</version>
-                        </dependency>
-                        <dependency>
-                            <groupId>org.apache.maven.wagon</groupId>
-                            <artifactId>wagon-ssh</artifactId>
-                            <version>3.5.3</version>
-                        </dependency>
-                    </dependencies>
-                </plugin>
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-source-plugin</artifactId>
@@ -806,131 +786,6 @@
         </plugins>
     </build>
 
-    <reporting>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-checkstyle-plugin</artifactId>
-                <version>${checkstyle-plugin.version}</version>
-                <configuration>
-                    <configLocation>${checkstyle.configLocation}</configLocation>
-                </configuration>
-            </plugin>
-            <!-- We use the aggregate reports for the javadoc and jxr reports because even if the project isn't a multi-module
-                project the plugin still does the right thing. -->
-            <plugin>
-                <groupId>net.shibboleth.maven.plugins</groupId>
-                <artifactId>maven-javadoc-plugin</artifactId>
-                <version>${maven-javadoc-plugin.version}</version>
-                <configuration>
-                    <links>
-                        <!-- The Java SE link is possibly not used (see JPAR-163) -->
-                        <link>${javase.link}</link>
-                        <link>${jakartaee.link}</link>
-                        <link>${spring-framework.link}</link>
-                        <link>${spring-webflow.link}</link>
-                        <link>${guava.link}</link>
-                        <link>${ldaptive.link}</link>
-                    </links>
-                    <quiet>true</quiet>
-                    <author>false</author>
-                    <show>private</show>
-                    <version>true</version>
-                    <doctitle>${project.name} ${project.version} API</doctitle>
-                    <windowtitle>${project.name} ${project.version} API</windowtitle>
-                    <tags>
-                        <tag>
-                            <name>parent</name>
-                            <placement>t</placement>
-                            <head>Parent:</head>
-                        </tag>
-                        <tag>
-                            <name>child</name>
-                            <placement>t</placement>
-                            <head>Child:</head>
-                        </tag>
-                        <tag>
-                            <name>added</name>
-                            <placement>t</placement>
-                            <head>Added:</head>
-                        </tag>
-                        <tag>
-                            <name>removed</name>
-                            <placement>t</placement>
-                            <head>Removed:</head>
-                        </tag>
-                        <tag>
-                            <name>event</name>
-                            <placement>t</placement>
-                            <head>Event:</head>
-                        </tag>
-                        <tag>
-                            <name>pre</name>
-                            <placement>t</placement>
-                            <head>Precondition:</head>
-                        </tag>
-                        <tag>
-                            <name>post</name>
-                            <placement>t</placement>
-                            <head>Postcondition:</head>
-                        </tag>
-                    </tags>
-                </configuration>
-                <reportSets>
-                    <reportSet>
-                        <id>aggregate</id>
-                        <reports>
-                            <report>aggregate</report>
-                            <report>test-aggregate</report>
-                        </reports>
-                    </reportSet>
-                    <reportSet>
-                        <id>non-aggregate</id>
-                        <reports>
-                            <report>javadoc-no-fork</report>
-                            <report>test-javadoc-no-fork</report>
-                        </reports>
-                    </reportSet>
-                </reportSets>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-jxr-plugin</artifactId>
-                <version>${maven-jxr-plugin.version}</version>
-                <configuration>
-                    <aggregate>true</aggregate>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-project-info-reports-plugin</artifactId>
-                <version>${maven-project-info-reports-plugin.version}</version>
-                <configuration>
-                    <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
-                    <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
-                </configuration>
-                <reportSets>
-                    <reportSet>
-                        <reports>
-                            <report>index</report>
-                            <report>licenses</report>
-                            <report>distribution-management</report>
-                            <report>mailing-lists</report>
-                            <report>issue-management</report>
-                            <report>scm</report>
-                            <report>ci-management</report>
-                            <report>team</report>
-                            <report>dependencies</report>
-                            <report>dependency-management</report>
-                            <report>plugins</report>
-                            <report>plugin-management</report>
-                        </reports>
-                    </reportSet>
-                </reportSets>
-            </plugin>
-        </plugins>
-    </reporting>
-
     <profiles>
 
         <!--

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


More information about the commits mailing list