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 53b7921 commit fddf028Copy full SHA for fddf028
build.gradle.kts
@@ -3,6 +3,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
3
plugins {
4
kotlin("jvm") version "1.7.10"
5
kotlin("plugin.serialization") version "1.7.10"
6
+ `maven-publish`
7
}
8
9
group = "dev.imanity.bbbapi"
@@ -18,6 +19,18 @@ dependencies {
18
19
implementation(libs.coroutines)
20
21
22
+publishing {
23
+ publications {
24
+ create<MavenPublication>("maven") {
25
+ groupId = "dev.imanity.bbbapi"
26
+ artifactId = "bbbapi"
27
+ version = "1.0.0"
28
+
29
+ from(components["java"])
30
+ }
31
32
+}
33
34
tasks.test {
35
useJUnitPlatform()
36
0 commit comments