Author: mck
Date: Tue Nov 7 11:14:15 2017
New Revision: 1814482
URL: http://svn.apache.org/viewvc?rev=1814482&view=rev
Log:
fix generation of digests and signatures in assembly subproject
Modified:
tiles/framework/tags/tiles-parent-3.0.8/assembly/pom.xml
tiles/framework/tags/tiles-parent-3.0.8/src/site/apt/dev/release.apt
Modified: tiles/framework/tags/tiles-parent-3.0.8/assembly/pom.xml
URL:
http://svn.apache.org/viewvc/tiles/framework/tags/tiles-parent-3.0.8/assembly/pom.xml?rev=1814482&r1=1814481&r2=1814482&view=diff
==============================================================================
--- tiles/framework/tags/tiles-parent-3.0.8/assembly/pom.xml (original)
+++ tiles/framework/tags/tiles-parent-3.0.8/assembly/pom.xml Tue Nov 7
11:14:15 2017
@@ -74,12 +74,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
- <version>2.2-beta-4</version>
+ <version>3.1.0</version>
<executions>
<execution>
<id>make-assembly</id>
<goals>
- <goal>attached</goal>
+ <goal>single</goal>
</goals>
<phase>package</phase>
</execution>
@@ -101,6 +101,28 @@
</configuration>
</plugin>
<plugin>
+ <groupId>net.nicoulaj.maven.plugins</groupId>
+ <artifactId>checksum-maven-plugin</artifactId>
+ <version>1.6</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>artifacts</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <attachChecksums>true</attachChecksums>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-gpg-plugin</artifactId>
+ <configuration>
+ <ascDirectory>${project.build.directory}/..</ascDirectory>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.3</version>
Modified: tiles/framework/tags/tiles-parent-3.0.8/src/site/apt/dev/release.apt
URL:
http://svn.apache.org/viewvc/tiles/framework/tags/tiles-parent-3.0.8/src/site/apt/dev/release.apt?rev=1814482&r1=1814481&r2=1814482&view=diff
==============================================================================
--- tiles/framework/tags/tiles-parent-3.0.8/src/site/apt/dev/release.apt
(original)
+++ tiles/framework/tags/tiles-parent-3.0.8/src/site/apt/dev/release.apt Tue
Nov 7 11:14:15 2017
@@ -108,7 +108,7 @@ mvn release:perform -Duser.name=YOUR_PEO
cd target/
svn co https://dist.apache.org/repos/dist/dev/tiles tiles-dist-dev
mkdir tiles-dist-dev/request/${version}
-cp checkout/assembly/target/assemblies/* tiles-dist-dev/${version}/
+cp checkout/assembly/target/assembly/* tiles-dist-dev/${version}/
svn add tiles-dist-dev/${version}
svn ci tiles-dist-dev/${version}
-----------------------------------