This commit is contained in:
C10udburst
2022-01-12 19:39:32 +01:00
parent 459b158cd8
commit 9b4a9a111b

View File

@@ -1,6 +1,5 @@
plugins { plugins {
id 'fabric-loom' version '0.10-SNAPSHOT' id 'fabric-loom' version '0.10-SNAPSHOT'
id 'maven-publish'
} }
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_17 sourceCompatibility = targetCompatibility = JavaVersion.VERSION_17
@@ -10,7 +9,6 @@ version = project.mod_version
group = project.maven_group group = project.maven_group
repositories { repositories {
jcenter()
maven { maven {
name = "jitpack" name = "jitpack"
url = "https://jitpack.io" url = "https://jitpack.io"
@@ -23,6 +21,7 @@ repositories {
name = "meteor-maven-snapshots" name = "meteor-maven-snapshots"
url = "https://maven.meteordev.org/snapshots" url = "https://maven.meteordev.org/snapshots"
} }
jcenter()
} }
dependencies { dependencies {
@@ -37,13 +36,17 @@ dependencies {
// PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs. // PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs.
// You may need to force-disable transitiveness on them. // You may need to force-disable transitiveness on them.
modImplementation "meteordevelopment:meteor-client:SNAPSHOT" modImplementation("meteordevelopment:meteor-client:SNAPSHOT")
// Seed .locate features // Seed .locate features
modImplementation 'com.github.hube12:SEED:master-SNAPSHOT' modImplementation 'com.github.hube12:SEED:master-SNAPSHOT'
include 'com.github.hube12:SEED:master-SNAPSHOT' include 'com.github.hube12:SEED:master-SNAPSHOT'
} }
configurations.modImplementation {
exclude group: 'club.minnced' // fuck you
}
processResources { processResources {
inputs.property "version", project.version inputs.property "version", project.version