DimDoors/build.gradle

212 lines
5.3 KiB
Groovy
Raw Normal View History

2021-01-08 03:38:43 +01:00
plugins {
2022-01-14 06:21:44 +01:00
id "java"
2021-11-19 11:14:20 +01:00
id "fabric-loom" version "0.10-SNAPSHOT"
2021-01-28 06:57:36 +01:00
id "maven-publish"
2022-01-14 06:21:44 +01:00
id "com.matthewprenger.cursegradle" version "1.4.0"
2021-01-08 03:38:43 +01:00
}
2021-06-13 07:07:16 +02:00
sourceCompatibility = JavaVersion.VERSION_16
targetCompatibility = JavaVersion.VERSION_16
2021-01-08 03:38:43 +01:00
repositories {
2021-01-28 06:57:36 +01:00
mavenCentral()
2021-03-30 16:41:02 +02:00
maven {
2022-01-14 06:21:44 +01:00
url "https://maven.legacyfabric.net/"
2021-03-30 16:41:02 +02:00
}
2021-01-28 06:57:36 +01:00
maven {
name = "Fabric maven"
url = "https://maven.fabricmc.net/"
}
maven {
url = "https://www.cursemaven.com"
content {
includeGroup "curse.maven"
}
}
maven {
url = "https://server.bbkr.space/artifactory/libs-release"
content {
includeGroup "io.github.cottonmc"
}
}
2021-04-13 11:19:21 +02:00
maven {
2022-01-14 06:21:44 +01:00
name = "Ladysnake Mods"
url = "https://ladysnake.jfrog.io/artifactory/mods"
2021-04-13 11:19:21 +02:00
}
2021-02-16 10:02:49 +01:00
maven {
url = "https://maven.shedaniel.me/"
}
2021-03-22 11:41:09 +01:00
2021-11-19 11:38:52 +01:00
maven {
url = "https://maven.bai.lol"
content {
includeGroup "mcp.mobius.waila"
}
}
2021-03-22 11:41:09 +01:00
maven {
url = "https://jitpack.io"
}
2021-03-22 18:39:32 +01:00
maven {
2022-01-14 06:21:44 +01:00
name = "TerraformersMC"
url = "https://maven.terraformersmc.com/"
2021-03-22 18:39:32 +01:00
}
2021-03-31 13:07:19 +02:00
2022-01-14 06:21:44 +01:00
maven { url "https://dl.cloudsmith.io/public/geckolib3/geckolib/maven/" }
2021-01-08 03:38:43 +01:00
}
2021-01-28 06:57:36 +01:00
def includeCompile(group, artifact, version) {
2021-01-11 03:46:22 +01:00
project.dependencies {
2021-01-28 06:57:36 +01:00
modCompileOnly("$group:$artifact:$version") {
exclude module: "fabric-api"
}
2021-11-19 11:38:52 +01:00
modRuntimeOnly("$group:$artifact:$version") {
2021-01-11 03:46:22 +01:00
exclude module: "fabric-api"
}
2021-01-28 06:57:36 +01:00
include("$group:$artifact:$version")
2021-01-11 03:46:22 +01:00
}
2021-01-25 03:54:24 +01:00
project.publishing {
publications {
mavenJava(MavenPublication) {
pom.withXml {
def depsNode = asNode().appendNode("dependencies")
def depNode = depsNode.appendNode("dependency")
2021-01-28 06:57:36 +01:00
depNode.appendNode("groupId", group)
depNode.appendNode("artifactId", artifact)
depNode.appendNode("version", version)
2021-01-25 03:54:24 +01:00
depNode.appendNode("scope", "compile")
}
}
}
}
2021-01-11 03:46:22 +01:00
}
2021-02-16 10:02:49 +01:00
sourceSets {
main {
java {
srcDir "src/main/schematics"
srcDir "src/main/config"
}
}
datagen
}
2021-09-27 06:28:28 +02:00
loom {
2022-01-14 06:21:44 +01:00
accessWidenerPath = file("src/main/resources/dimdoors.accesswidener")
2021-03-23 03:44:08 +01:00
}
2021-01-08 03:38:43 +01:00
dependencies {
2022-01-14 06:21:44 +01:00
minecraft "com.mojang:minecraft:1.18.1"
mappings "net.fabricmc:yarn:1.18.1+build.1:v2"
modImplementation "net.fabricmc:fabric-loader:0.12.12"
2022-01-14 10:08:31 +01:00
modImplementation "net.fabricmc.fabric-api:fabric-api:0.45.2+1.18"
2021-01-28 06:57:36 +01:00
includeCompile("com.flowpowered", "flow-math", "1.0.3")
includeCompile("org.jgrapht", "jgrapht-core", "1.1.0")
includeCompile("com.github.DimensionalDevelopment", "poly2tri.java", "0.1.1")
2021-03-03 17:55:16 +01:00
includeCompile("com.github.DimensionalDevelopment", "Matrix", "1.0.0")
2022-01-14 06:21:44 +01:00
includeCompile("me.shedaniel.cloth", "cloth-config-fabric", "6.1.48")
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-base", "4.0.1")
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-item", "4.0.1")
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-entity", "4.0.1")
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-level", "4.0.1")
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-world", "4.0.1")
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-chunk", "4.0.1")
modCompileOnly("com.terraformersmc:modmenu:3.0.1") {
2021-02-11 16:10:28 +01:00
exclude module: "fabric-api"
}
2022-01-14 06:21:44 +01:00
modRuntimeOnly("com.terraformersmc:modmenu:3.0.1") {
2021-03-22 18:39:32 +01:00
exclude module: "fabric-api"
}
2022-01-14 06:21:44 +01:00
modCompileOnly("mcp.mobius.waila:wthit:fabric-4.4.1") {
2021-03-22 11:41:09 +01:00
exclude module: "modmenu"
exclude module: "fabric-api"
}
2022-01-14 06:21:44 +01:00
modRuntimeOnly("mcp.mobius.waila:wthit:fabric-4.4.1") {
2021-03-22 11:41:09 +01:00
exclude module: "modmenu"
2021-02-11 16:10:28 +01:00
exclude module: "fabric-api"
}
2022-01-14 10:08:31 +01:00
modCompileOnly("me.shedaniel.cloth.api:cloth-datagen-api-v1:3.0.55") {
exclude module: "fabric-api"
}
modRuntimeOnly("me.shedaniel.cloth.api:cloth-datagen-api-v1:3.0.55") {
exclude module: "fabric-api"
}
2022-01-14 06:21:44 +01:00
modCompileOnly "curse.maven:worldedit-225608:3559499"
modRuntimeOnly "curse.maven:worldedit-225608:3559499"
2022-01-14 06:21:44 +01:00
// modImplementation "software.bernie.geckolib:geckolib-fabric-1.17:3.0.13:dev"
2021-10-08 23:42:08 +02:00
2021-02-16 08:43:11 +01:00
datagenImplementation sourceSets.main.output
2021-02-16 10:02:49 +01:00
datagenImplementation sourceSets.main.compileClasspath
2021-02-17 04:03:11 +01:00
datagenRuntimeOnly sourceSets.main.runtimeClasspath
2021-02-16 10:02:49 +01:00
2022-01-14 06:21:44 +01:00
testImplementation("junit:junit:4.13.2")
testImplementation("net.devtech:PotatoUnit:1.0.2")
2021-01-08 03:38:43 +01:00
}
2021-02-13 07:20:55 +01:00
version = computeVersion(project.mod_version)
2021-01-28 06:57:36 +01:00
archivesBaseName = "DimensionalDoors"
2021-01-08 03:38:43 +01:00
2021-02-13 07:20:55 +01:00
static def computeVersion(String version) {
2021-03-23 08:29:09 +01:00
if (version.contains("alpha") || version.contains("beta")) {
2021-02-15 11:34:05 +01:00
return version + "-" + Calendar.getInstance().getTime().format("dd.MM.yyyy")
2021-02-13 07:20:55 +01:00
}
return version
}
2021-01-08 03:38:43 +01:00
processResources {
2021-02-11 16:10:28 +01:00
filesMatching("fabric.mod.json") {
expand "version": project.version
}
2021-01-08 03:38:43 +01:00
2021-02-11 16:10:28 +01:00
inputs.property "version", project.version
2021-01-08 03:38:43 +01:00
}
artifacts {
2021-02-11 16:10:28 +01:00
archives jar
2021-01-08 03:38:43 +01:00
}
2021-02-13 07:20:55 +01:00
curseforge {
2022-01-14 06:21:44 +01:00
if (project.hasProperty("curse_api_key")) {
apiKey = project.getProperty("curse_api_key")
2021-02-13 07:20:55 +01:00
}
project {
2022-01-14 06:21:44 +01:00
id = "284876"
changelog = file("changelog.txt").text
releaseType = "beta"
addGameVersion "1.18.1"
addGameVersion "Fabric"
2021-02-13 07:20:55 +01:00
mainArtifact(file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar")) {
2022-01-14 06:21:44 +01:00
displayName = "[1.18.1] Dimensional Doors ${version}"
2021-02-13 07:20:55 +01:00
}
afterEvaluate {
uploadTask.dependsOn("remapJar")
}
}
options {
forgeGradleIntegration = false
}
}
test {
2022-01-14 06:21:44 +01:00
workingDir = file("test")
2021-03-30 16:41:02 +02:00
2022-01-14 06:21:44 +01:00
systemProperty("fabric.dli.config", file(".gradle/loom-cache/launch.cfg").getAbsolutePath())
2021-03-30 16:41:02 +02:00
//useJUnitPlatform()
}
tasks.test.doFirst {test ->
2021-03-30 16:41:02 +02:00
if (!test.workingDir.exists()) {
test.workingDir.mkdirs();
}
}