[java-idp-plugin-oidc-config] branch main updated: Fix zip assembly
Phil Smart
philip.smart at jisc.ac.uk
Fri May 12 08:54:14 UTC 2023
This is an automated email from the git hooks/post-receive script.
philsmart 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=ca52531e8a828f8e9216a2e5d4defc57ad331c7f
The following commit(s) were added to refs/heads/main by this push:
new ca52531 Fix zip assembly
ca52531 is described below
commit ca52531e8a828f8e9216a2e5d4defc57ad331c7f
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Fri May 12 09:53:41 2023 +0100
Fix zip assembly
It was not including the impl jar
The tar.gz was fine
---
oidc-config-dist/src/main/assembly/plugin-assembly-zip.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/oidc-config-dist/src/main/assembly/plugin-assembly-zip.xml b/oidc-config-dist/src/main/assembly/plugin-assembly-zip.xml
index e34b39e..6e08d12 100644
--- a/oidc-config-dist/src/main/assembly/plugin-assembly-zip.xml
+++ b/oidc-config-dist/src/main/assembly/plugin-assembly-zip.xml
@@ -15,7 +15,7 @@
<!-- The plugin property file -->
<fileSet>
- <directory>../target/classes/net/shibboleth/idp/plugin/oidc/config/</directory>
+ <directory>../oidc-config-impl/target/classes/net/shibboleth/idp/plugin/oidc/config/</directory>
<outputDirectory>bootstrap</outputDirectory>
<includes>
<include>plugin.properties</include>
@@ -24,10 +24,10 @@
<!-- The implementation jar -->
<fileSet>
- <directory>../target</directory>
+ <directory>../oidc-config-impl/target</directory>
<outputDirectory>webapp/WEB-INF/lib</outputDirectory>
<includes>
- <include>idp-plugin-oidc-config-*.jar</include>
+ <include>idp-plugin-oidc-config-impl-*.jar</include>
</includes>
<excludes>
<exclude>*test*.jar</exclude>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list