Skip to content

Commit

Permalink
Add explicit Jitpack publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
dmccabe committed Jun 18, 2023
1 parent 3c07c46 commit 57d1d92
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,20 @@ repositories {
mavenCentral()
}

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

repositories {
maven {
url = uri("https://jitpack.io")
}
}
}

dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion")

Expand Down

0 comments on commit 57d1d92

Please sign in to comment.