This commit is contained in:
parent
c3903552c8
commit
d26d4f0ea8
30 changed files with 326 additions and 267 deletions
17
build.gradle
17
build.gradle
|
|
@ -15,6 +15,17 @@ repositories {
|
|||
name = "TerraformersMC"
|
||||
url = "https://maven.terraformersmc.com/"
|
||||
}
|
||||
exclusiveContent {
|
||||
forRepository {
|
||||
maven {
|
||||
name = "Modrinth"
|
||||
url = "https://api.modrinth.com/maven"
|
||||
}
|
||||
}
|
||||
filter {
|
||||
includeGroup "maven.modrinth"
|
||||
}
|
||||
}
|
||||
maven {
|
||||
name = "Ladysnake Libs"
|
||||
url = 'https://maven.ladysnake.org/releases'
|
||||
|
|
@ -39,7 +50,9 @@ dependencies {
|
|||
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
|
||||
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
|
||||
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
|
||||
modImplementation "dev.emi:trinkets:${trinkets_version}"
|
||||
modImplementation "maven.modrinth:trinkets-canary:${project.trinkets_version}"
|
||||
modImplementation include("dev.onyxstudios.cardinal-components-api:cardinal-components-base:${project.cca_version}")
|
||||
modImplementation include("dev.onyxstudios.cardinal-components-api:cardinal-components-entity:${project.cca_version}")
|
||||
|
||||
include(modApi("teamreborn:energy:${project.energy_version}")) {
|
||||
transitive = false
|
||||
|
|
@ -55,7 +68,7 @@ processResources {
|
|||
}
|
||||
|
||||
tasks.withType(JavaCompile).configureEach {
|
||||
it.options.release = 17
|
||||
it.options.release = 21
|
||||
}
|
||||
|
||||
java {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue