We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8ad9bf commit ce97a90Copy full SHA for ce97a90
1 file changed
build.gradle
@@ -2,7 +2,7 @@ plugins {
2
id "java-library"
3
id "com.github.johnrengelman.shadow" version "8.1.1"
4
id "io.github.intisy.online-gradle" version "1.7.2"
5
- id "io.github.intisy.github-gradle" version "1.8.1.1"
+ id "io.github.intisy.github-gradle" version "1.8.2"
6
}
7
8
online {
@@ -18,6 +18,20 @@ github {
18
accessToken = System.getenv("GITHUB_TOKEN") ?: ""
19
20
21
+publishGithub {
22
+ releaseName = "Release ${project.version}"
23
+ artifacts {
24
+ artifact {
25
+ classifier = ""
26
+ jar = file("build/libs/docker-java.jar")
27
+ }
28
29
+ classifier = "standalone"
30
+ jar = file("build/libs/docker-java-standalone.jar")
31
32
33
+}
34
+
35
repositories {
36
mavenLocal()
37
mavenCentral()
0 commit comments