[java-idp-oidc] branch main updated: GEN-356 - Plugin jar manifest errors

Henri Mikkonen henri.mikkonen at iki.fi
Mon Aug 25 07:20:12 UTC 2025


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

hjmikkon pushed a commit to branch main
in repository java-idp-oidc.

View the commit online:
http://git.shibboleth.net/view/?p=java-idp-oidc.git;a=commit;h=66733cca91c9ce40f60f0a811cd79f37536b0546

The following commit(s) were added to refs/heads/main by this push:
     new 66733cca GEN-356 - Plugin jar manifest errors
66733cca is described below

commit 66733cca91c9ce40f60f0a811cd79f37536b0546
Author: Henri Mikkonen <henri.mikkonen at iki.fi>
AuthorDate: Mon Aug 25 10:18:32 2025 +0300

    GEN-356 - Plugin jar manifest errors
    
    https://shibboleth.atlassian.net/browse/GEN-356
    
    Move Maven jar plugin config to parent
    Sealing must be disabled as api and impl share some packages
---
 idp-oidc-extension-api/pom.xml  | 28 ----------------------------
 idp-oidc-extension-impl/pom.xml | 25 -------------------------
 pom.xml                         | 14 ++++++++++++++
 3 files changed, 14 insertions(+), 53 deletions(-)

diff --git a/idp-oidc-extension-api/pom.xml b/idp-oidc-extension-api/pom.xml
index 36c993cb..dd97699a 100644
--- a/idp-oidc-extension-api/pom.xml
+++ b/idp-oidc-extension-api/pom.xml
@@ -159,33 +159,5 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-    
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-jar-plugin</artifactId>
-                <configuration>
-                    <archive>
-                        <index>true</index>
-                         <manifestEntries>
-                            <Automatic-Module-Name>${automatic.module.name}</Automatic-Module-Name>
-                        </manifestEntries>
-                        <manifestSections>
-                            <manifestSection>
-                                <name>net/shibboleth/idp/plugin/oidc/op/</name>
-                                <manifestEntries>
-                                    <Implementation-Title>${project.artifactId}</Implementation-Title>
-                                    <Implementation-Version>${project.version}</Implementation-Version>
-                                    <Implementation-Vendor>shibboleth.net</Implementation-Vendor>
-                                </manifestEntries>
-                            </manifestSection>
-                        </manifestSections>
-                    </archive>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-
 
 </project>
diff --git a/idp-oidc-extension-impl/pom.xml b/idp-oidc-extension-impl/pom.xml
index d4fec25f..a1f32617 100644
--- a/idp-oidc-extension-impl/pom.xml
+++ b/idp-oidc-extension-impl/pom.xml
@@ -544,31 +544,6 @@
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-compiler-plugin</artifactId>
             </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-jar-plugin</artifactId>
-                <configuration>
-                    <archive>
-                        <manifestEntries>
-                            <Automatic-Module-Name>${automatic.module.name}</Automatic-Module-Name>
-                        </manifestEntries>
-                        <manifestSections>
-                            <manifestSection>
-                                <name>net/shibboleth/idp/plugin/oidc/op/</name>
-                                <manifestEntries>
-                                    <Implementation-Title>${project.artifactId}</Implementation-Title>
-                                    <Implementation-Version>${project.version}</Implementation-Version>
-                                    <Implementation-Vendor>shibboleth.net</Implementation-Vendor>
-                                </manifestEntries>
-                            </manifestSection>
-                        </manifestSections>
-                    </archive>
-                    <excludes>
-                        <exclude>conf/**</exclude>
-                        <exclude>credentials/**</exclude>
-                    </excludes>
-                </configuration>
-            </plugin>
         </plugins>
     </build>
 
diff --git a/pom.xml b/pom.xml
index fede9d37..3a9d833d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -187,6 +187,20 @@
                     </links>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifestEntries>
+                            <Automatic-Module-Name>${automatic.module.name}</Automatic-Module-Name>
+                            <Implementation-Title>${project.artifactId}</Implementation-Title>
+                            <Implementation-Version>${project.version}</Implementation-Version>
+                            <Implementation-Vendor>shibboleth.net</Implementation-Vendor>
+                        </manifestEntries>
+                    </archive>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 

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


More information about the commits mailing list