diff --git a/build.gradle b/build.gradle index 9168b83..f151795 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,6 @@ plugins { - id 'fabric-loom' version '0.8-SNAPSHOT' + id 'fabric-loom' version '0.9-SNAPSHOT' id 'maven-publish' - //id 'com.github.johnrengelman.shadow' version '7.0.0' } sourceCompatibility = JavaVersion.VERSION_16 @@ -12,7 +11,10 @@ version = project.mod_version group = project.maven_group repositories { - maven { url "https://jitpack.io" } + maven { + name = "jitpack" + url = "https://jitpack.io" + } } dependencies { @@ -53,35 +55,3 @@ tasks.withType(JavaCompile).configureEach { it.options.release = targetVersion } } - -java { - // Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task - // if it is present. - // If you remove this line, sources will not be generated. - withSourcesJar() -} - -jar { - -} - -// configure the maven publication -publishing { - publications { - mavenJava(MavenPublication) { - // add all the jars that should be included when publishing to maven - artifact(remapJar) { - builtBy remapJar - } - artifact(sourcesJar) { - builtBy remapSourcesJar - } - } - } - - // Select the repositories you want to publish to - // To publish to maven local, no extra repositories are necessary. Just use the task `publishToMavenLocal`. - repositories { - // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. - } -}