[java-idp-plugin-jetty] 05/186: IDP-1110 - Maven assembly descriptors
Rod Widdowson
rdw at steadingsoftware.com
Thu Jul 24 15:55:56 UTC 2025
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch dev/foo
in repository java-idp-plugin-jetty.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-plugin-jetty.git;a=commit;h=8eb5a5a3806221a6c3e6af7beede06b9acdc3052
commit 8eb5a5a3806221a6c3e6af7beede06b9acdc3052
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Thu Mar 2 02:13:28 2017 -0600
IDP-1110 - Maven assembly descriptors
---
src/main/assembly/tgz.xml | 15 +++++++++++++++
src/main/assembly/zip.xml | 38 ++++++++++++++++++++++++++++++++++++++
2 files changed, 53 insertions(+)
diff --git a/src/main/assembly/tgz.xml b/src/main/assembly/tgz.xml
new file mode 100644
index 0000000..e48d2b9
--- /dev/null
+++ b/src/main/assembly/tgz.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
+ <id>assembly-tgz</id>
+ <formats>
+ <format>tar.gz</format>
+ </formats>
+ <fileSets>
+ <fileSet>
+ <directory>${assemblyDirectory}</directory>
+ <outputDirectory></outputDirectory>
+ </fileSet>
+ </fileSets>
+ <includeBaseDirectory>false</includeBaseDirectory>
+</assembly>
diff --git a/src/main/assembly/zip.xml b/src/main/assembly/zip.xml
new file mode 100644
index 0000000..7c57005
--- /dev/null
+++ b/src/main/assembly/zip.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
+ <id>assembly-zip</id>
+ <formats>
+ <format>zip</format>
+ </formats>
+ <fileSets>
+ <fileSet>
+ <directory>${assemblyDirectory}</directory>
+ <outputDirectory></outputDirectory>
+ <excludes>
+ <exclude>**/*.bat*</exclude>
+ <exclude>**/*.config*</exclude>
+ <exclude>**/*.ini*</exclude>
+ <exclude>**/*.properties*</exclude>
+ <exclude>**/*.txt*</exclude>
+ <exclude>**/*.vm*</exclude>
+ <exclude>**/*.xml*</exclude>
+ </excludes>
+ </fileSet>
+ <fileSet>
+ <directory>${assemblyDirectory}</directory>
+ <outputDirectory></outputDirectory>
+ <includes>
+ <include>**/*.bat*</include>
+ <include>**/*.config*</include>
+ <include>**/*.ini*</include>
+ <include>**/*.properties*</include>
+ <include>**/*.txt*</include>
+ <include>**/*.vm*</include>
+ <include>**/*.xml*</include>
+ </includes>
+ <lineEnding>windows</lineEnding>
+ </fileSet>
+ </fileSets>
+ <includeBaseDirectory>false</includeBaseDirectory>
+</assembly>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list