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 b39d7f4 commit ac3f2fcCopy full SHA for ac3f2fc
gradle/publish-jar.gradle
@@ -1,9 +1,16 @@
1
+// This file is managed by the excavator 'consistent-publish-jar' check, changes will be overwritten.
2
apply plugin: 'com.jfrog.bintray'
3
apply plugin: 'nebula.maven-publish'
4
apply plugin: 'nebula.maven-resolved-dependencies'
5
apply plugin: 'nebula.javadoc-jar'
6
apply plugin: 'nebula.source-jar'
7
8
+jar {
9
+ manifest {
10
+ attributes("Implementation-Version" : project.version)
11
+ }
12
+}
13
+
14
bintray {
15
user = System.env.BINTRAY_USERNAME
16
key = System.env.BINTRAY_PASSWORD
@@ -21,4 +28,3 @@ publish.dependsOn bintrayUpload
21
28
bintrayUpload.onlyIf {
22
29
versionDetails().isCleanTag
23
30
}
24
-
0 commit comments