Skip to content

Commit

Permalink
fixed the jitpack build not being found
Browse files Browse the repository at this point in the history
  • Loading branch information
Tofpu committed Mar 25, 2022
1 parent 514b568 commit b4050c6
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
plugins {
id "java"
id "maven-publish"
}

subprojects {

apply plugin: "java"
apply plugin: "maven-publish"

Expand All @@ -13,6 +13,14 @@ subprojects {
sourceCompatibility = 1.8
targetCompatibility = 1.8

publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}

repositories {
mavenCentral()
}
Expand Down

0 comments on commit b4050c6

Please sign in to comment.