We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b72d74 commit c8a7ee8Copy full SHA for c8a7ee8
2 files changed
build.gradle
@@ -150,6 +150,11 @@ tasks.register('dist', Zip) {
150
// NOTE: Inclusion of files from sub-projects is handled in their respective build.gradle files
151
}
152
153
+tasks.named('assemble') {
154
+ dependsOn tasks.named('dist')
155
+ dependsOn tasks.named('signDist')
156
+}
157
+
158
jar {
159
manifest {
160
attributes(
devdoc/publish.md
@@ -8,7 +8,7 @@ Publishing
8
To publish to Maven use
9
10
```
11
-gradlew clean dist assemble publish -PcredentialsPassphrase=<credentials password>
+gradlew clean assemble publish -PcredentialsPassphrase=<credentials password>
12
13
Where `<credentials password>` is the password used to add the credentials (see
14
also below).
0 commit comments