Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit 3f096a8

Browse files
committed
0.1 release
1 parent f482818 commit 3f096a8

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

build.gradle.kts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import com.diffplug.gradle.spotless.SpotlessExtension
22
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
33

44
group = "sh.brocode"
5-
version = "0.1-SNAPSHOT"
5+
version = "0.1"
66

77
plugins {
88
kotlin("jvm") version "1.6.10"
@@ -66,6 +66,8 @@ publishing {
6666
publications {
6767
create<MavenPublication>("mavenJava") {
6868
pom {
69+
name.set("brolog")
70+
description.set("A simple slf4j backend")
6971
url.set("https://github.com/brocode/brolog/")
7072
licenses {
7173
license {
@@ -80,6 +82,11 @@ publishing {
8082
email.set("[email protected]")
8183
}
8284
}
85+
scm {
86+
connection.set("scm:git:[email protected]:brocode/brolog.git")
87+
developerConnection.set("scm:git:ssh://[email protected]:brocode/brolog.git")
88+
url.set("https://github.com/brocode/brolog/")
89+
}
8390
}
8491
from(components["java"])
8592
}

0 commit comments

Comments
 (0)