Skip to content

Commit

Permalink
Fixed publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
fan87 committed Jun 17, 2022
1 parent 40c6ab7 commit ef2fcbf
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = "me.fan87"
version = "1.0.0"
version = "1.0.0-SNAPSHOT"

repositories {
mavenCentral()
Expand Down Expand Up @@ -39,4 +39,14 @@ tasks.test {

tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}

publishing {
publications {
create<MavenPublication>("maven") {
from(components["java"])
}
}
repositories {
}
}

0 comments on commit ef2fcbf

Please sign in to comment.