Skip to content

Commit

Permalink
Make jitpack work (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
oxisto authored Jul 5, 2021
1 parent 7540a59 commit d6def59
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 @@ -14,8 +14,11 @@ plugins {
application
java
idea
`maven-publish`
}

group = "io.clouditor"

val generatedDir = "${projectDir}/generated"

configure<org.gradle.plugins.ide.idea.model.IdeaModel> {
Expand All @@ -38,8 +41,15 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach
}
}

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

repositories {
mavenLocal()
mavenCentral()

maven { setUrl("https://jitpack.io") }
Expand Down

0 comments on commit d6def59

Please sign in to comment.