[java-idp-jetty-base] 02/03: IDP-1110 - Rename assemblies
Tom Zeller
tzeller at dragonacea.biz
Thu Jul 6 17:51:05 EDT 2017
This is an automated email from the git hooks/post-receive script.
tzeller pushed a commit to branch 9.4
in repository java-idp-jetty-base.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-jetty-base.git;a=commit;h=4cecf57be60ba53e1db77c988666bdee4507db7b
commit 4cecf57be60ba53e1db77c988666bdee4507db7b
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Thu Jul 6 16:47:35 2017 -0500
IDP-1110 - Rename assemblies
Rename the 'assembly-zip' assembly to 'windows'.
Rename the 'assembly-tgz' assembly to 'unix'.
This should make the target platform more obvious.
FYI the assembly <id/> becomes the Maven classifier.
---
pom.xml | 4 ++--
src/main/assembly/{tgz.xml => unix.xml} | 2 +-
src/main/assembly/{zip.xml => windows.xml} | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/pom.xml b/pom.xml
index 9c68140..c0015c4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -163,8 +163,8 @@
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
- <descriptor>src/main/assembly/tgz.xml</descriptor>
- <descriptor>src/main/assembly/zip.xml</descriptor>
+ <descriptor>src/main/assembly/unix.xml</descriptor>
+ <descriptor>src/main/assembly/windows.xml</descriptor>
</descriptors>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
diff --git a/src/main/assembly/tgz.xml b/src/main/assembly/unix.xml
similarity index 95%
rename from src/main/assembly/tgz.xml
rename to src/main/assembly/unix.xml
index e48d2b9..d39889a 100644
--- a/src/main/assembly/tgz.xml
+++ b/src/main/assembly/unix.xml
@@ -1,7 +1,7 @@
<?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>
+ <id>unix</id>
<formats>
<format>tar.gz</format>
</formats>
diff --git a/src/main/assembly/zip.xml b/src/main/assembly/windows.xml
similarity index 98%
rename from src/main/assembly/zip.xml
rename to src/main/assembly/windows.xml
index 7c57005..5d7550f 100644
--- a/src/main/assembly/zip.xml
+++ b/src/main/assembly/windows.xml
@@ -1,7 +1,7 @@
<?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>
+ <id>windows</id>
<formats>
<format>zip</format>
</formats>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list