Repository: zest-qi4j
Updated Branches:
refs/heads/develop a0c74a7ba -> c9d57889a
Build: sign src & bin distributions
They were not signed anymore since some Gradle update although all
JARs were. `signing { sign someConfiguration }` must now be stated after
the configuration is complete. That was not the case for the root
project hence the distributions now being signed ⦠This commit fix this.
Project: http://git-wip-us.apache.org/repos/asf/zest-qi4j/repo
Commit: http://git-wip-us.apache.org/repos/asf/zest-qi4j/commit/e821bd20
Tree: http://git-wip-us.apache.org/repos/asf/zest-qi4j/tree/e821bd20
Diff: http://git-wip-us.apache.org/repos/asf/zest-qi4j/diff/e821bd20
Branch: refs/heads/develop
Commit: e821bd205c7a8ea3efa9818faed7662b3d9e8d59
Parents: a0c74a7
Author: Paul Merlin <[email protected]>
Authored: Fri Jul 17 20:19:57 2015 +0200
Committer: Paul Merlin <[email protected]>
Committed: Fri Jul 17 20:19:57 2015 +0200
----------------------------------------------------------------------
build.gradle | 4 ++++
1 file changed, 4 insertions(+)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/zest-qi4j/blob/e821bd20/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index d541318..69fe140 100644
--- a/build.gradle
+++ b/build.gradle
@@ -829,6 +829,10 @@ artifacts {
archives zipSources, tarSources, zipBinaries, tarBinaries
}
+signing {
+ sign configurations.archives
+}
+
task dist( type: Copy, dependsOn: install ) {
with binDistImage
into "$buildDir/dist"