[java-mvn-enforcer] branch main updated: JMVN-48 Release profile doesn't build

Rod Widdowson rdw at steadingsoftware.com
Sun Jan 15 11:12:05 UTC 2023


This is an automated email from the git hooks/post-receive script.

rdw pushed a commit to branch main
in repository java-mvn-enforcer.

View the commit online:
http://git.shibboleth.net/view/?p=java-mvn-enforcer.git;a=commit;h=fe8b8d95c9ac97d6b4adbfde151270195837ac5f

The following commit(s) were added to refs/heads/main by this push:
     new fe8b8d9  JMVN-48 Release profile doesn't build
fe8b8d9 is described below

commit fe8b8d95c9ac97d6b4adbfde151270195837ac5f
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Sun Jan 15 11:10:17 2023 +0000

    JMVN-48 Release profile doesn't build
    
    https://shibboleth.atlassian.net/browse/JMVN-48
    
    Pull javadoc generation from our parent.
    Point the enforcer at the new parent.
---
 parent/pom.xml | 85 ----------------------------------------------------------
 pom.xml        |  2 +-
 2 files changed, 1 insertion(+), 86 deletions(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index f14b4a2..fabfdcb 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -42,7 +42,6 @@
         <maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
         <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-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>
@@ -190,76 +189,6 @@
                     <artifactId>maven-jar-plugin</artifactId>
                     <version>${maven-jar-plugin.version}</version>
                 </plugin>
-                <!--
-                    Patched version of this plugin, see:
-
-https://issues.shibboleth.net/jira/browse/JPAR-164
-https://shibboleth.atlassian.net/browse/JPAR-207
-
-Possibly replace with official version post 3.4.0
-                -->
-                <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>${spring-framework.link}</link>
-                            <link>${spring-webflow.link}</link>
-                            <link>${guava.link}</link>
-                            <link>${joda-time.link}</link>
-                            <link>${ldaptive.link}</link>
-                            <link>${java-support.link}</link>
-                            <link>${java-opensaml.link}</link>
-                            <link>${spring-extensions.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>
-                </plugin>
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-resources-plugin</artifactId>
@@ -363,7 +292,6 @@ Possibly replace with official version post 3.4.0
             The "release" profile:
 
 * builds tar assemblies, if specified
-* builds Javadoc artifacts
 * builds source artifacts
 
 It also:
@@ -406,19 +334,6 @@ It also:
                         <groupId>org.apache.maven.plugins</groupId>
                         <artifactId>maven-dependency-plugin</artifactId>
                     </plugin>
-                    <plugin>
-                        <groupId>net.shibboleth.maven.plugins</groupId>
-                        <artifactId>maven-javadoc-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <id>attach-javadocs</id>
-                                <goals>
-                                    <goal>jar</goal>
-                                    <goal>test-jar</goal>
-                                </goals>
-                            </execution>
-                        </executions>
-                    </plugin>
                     <plugin>
                         <groupId>org.apache.maven.plugins</groupId>
                         <artifactId>maven-source-plugin</artifactId>
diff --git a/pom.xml b/pom.xml
index 3f9f7fe..17b9a55 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
     <parent>
         <groupId>net.shibboleth.maven.enforcer.rules</groupId>
         <artifactId>maven-dist-enforcer-parent</artifactId>
-        <version>1.0.0</version>
+        <version>1.0.1-SNAPSHOT</version>
     </parent>
 
     <groupId>net.shibboleth.maven.enforcer.rules</groupId>

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


More information about the commits mailing list