We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1cf913 commit a0a0af9Copy full SHA for a0a0af9
1 file changed
build.gradle
@@ -2,7 +2,7 @@ plugins {
2
id "java"
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 {
@@ -19,6 +19,20 @@ github {
19
accessToken = System.getenv("GITHUB_TOKEN") ?: ""
20
21
22
+publishGithub {
23
+ releaseName = "Release ${project.version}"
24
+ artifacts {
25
+ artifact {
26
+ classifier = ""
27
+ jar = file("build/libs/java-utils.jar")
28
+ }
29
30
+ classifier = "standalone"
31
+ jar = file("build/libs/java-utils-standalone.jar")
32
33
34
+}
35
+
36
repositories {
37
mavenLocal()
38
mavenCentral()
0 commit comments