This is an automated email from the ASF dual-hosted git repository.
davidb pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-feature-cpconverter.git
The following commit(s) were added to refs/heads/master by this push:
new 6b53a23 SLING-8979 Include the -source-release.zip file in releases
6b53a23 is described below
commit 6b53a231a1c342788e658c27fbe4ec961cc61a91
Author: David Bosschaert <[email protected]>
AuthorDate: Fri Jan 10 09:50:04 2020 +0000
SLING-8979 Include the -source-release.zip file in releases
The maven-assembly-plugin configuration was overridden globally rather
than added for an extra goal
---
pom.xml | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/pom.xml b/pom.xml
index d846dd6..88a5d6c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -330,16 +330,16 @@
<goals>
<goal>single</goal>
</goals>
+ <configuration>
+ <finalName>${project.build.finalName}</finalName>
+ <tarLongFileMode>gnu</tarLongFileMode>
+ <appendAssemblyId>false</appendAssemblyId>
+ <descriptors>
+ <descriptor>${basedir}/src/main/assembly/bin.xml</descriptor>
+ </descriptors>
+ </configuration>
</execution>
</executions>
- <configuration>
- <finalName>${project.build.finalName}</finalName>
- <tarLongFileMode>gnu</tarLongFileMode>
- <appendAssemblyId>false</appendAssemblyId>
- <descriptors>
- <descriptor>${basedir}/src/main/assembly/bin.xml</descriptor>
- </descriptors>
- </configuration>
</plugin>
</plugins>
</build>