[java-idp-plugin-metadatagen] branch main updated: GEN-356 - Plugin jar manifest errors
Scott Cantor
cantor.2 at osu.edu
Fri Jul 18 22:05:24 UTC 2025
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-idp-plugin-metadatagen.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-plugin-metadatagen.git;a=commit;h=0265fb5d197f2db0e6c675afa6ad26c3772e5242
The following commit(s) were added to refs/heads/main by this push:
new 0265fb5 GEN-356 - Plugin jar manifest errors
0265fb5 is described below
commit 0265fb5d197f2db0e6c675afa6ad26c3772e5242
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri Jul 18 18:05:21 2025 -0400
GEN-356 - Plugin jar manifest errors
https://shibboleth.atlassian.net/browse/GEN-356
Add missing plugin to impl jar bujild to get MANIFEST populated.
---
metadatagen-impl/pom.xml | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/metadatagen-impl/pom.xml b/metadatagen-impl/pom.xml
index 0144f74..b04e408 100644
--- a/metadatagen-impl/pom.xml
+++ b/metadatagen-impl/pom.xml
@@ -127,5 +127,27 @@
<!-- Test dependencies. -->
</dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifestSections>
+ <manifestSection>
+ <name>net/shibboleth/idp/plugin/metadatagen/impl/</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>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list