Skip to content

Commit

Permalink
Add jitpack configuration
Browse files Browse the repository at this point in the history
Signed-off-by: starry-shivam <[email protected]>
  • Loading branch information
starry-shivam committed Jun 17, 2024
1 parent 4d6e163 commit bdb3f36
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
plugins {
kotlin("jvm") version "2.0.0"
`maven-publish`
}

group = "dev.starry.ktscheduler"
version = "1.0-SNAPSHOT"
version = "1.0.0"

repositories {
mavenCentral()
Expand All @@ -19,3 +20,17 @@ dependencies {
testImplementation("org.mockito:mockito-inline:4.6.1")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:2.0.0")
}


publishing {
publications {
register("mavenJava", MavenPublication::class) {
groupId = "dev.starry.ktscheduler"
artifactId = "ktscheduler"
version = "1.0.0"
from(components["java"])
}
}
}


0 comments on commit bdb3f36

Please sign in to comment.