Skip to content

Commit 366b843

Browse files
committed
Add signing of distributions (#520)
Executing `./gradlew metafacture-runner:signArchives` builds signed distributions in metafacture-core/metafacture-runner/build/distributions/.
1 parent b7d0409 commit 366b843

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

metafacture-runner/build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ ext.mavenName = 'Metafacture Runner'
1919
description = 'CLI application for data processing with Flux and Metamorph'
2020

2121
apply plugin: 'distribution'
22+
apply plugin: 'signing'
2223

2324
configurations {
2425
plugins {
@@ -144,6 +145,10 @@ distTar {
144145
archiveExtension = 'tar.gz'
145146
}
146147

148+
signing {
149+
sign configurations.archives
150+
}
151+
147152
distZip {
148153
archiveClassifier = 'dist'
149154
}

0 commit comments

Comments
 (0)