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