DimDoors/build.gradle

220 lines
5.6 KiB
Groovy
Raw Normal View History

2021-01-08 03:38:43 +01:00
plugins {
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"
2021-02-13 07:20:55 +01:00
id 'com.matthewprenger.cursegradle' version "1.4.0"
2021-01-08 03:38:43 +01:00
}
apply plugin: "java"
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 {
url 'https://maven.legacyfabric.net/'
}
2021-01-28 06:57:36 +01:00
maven {
name = "Fabric maven"
url = "https://maven.fabricmc.net/"
}
2021-07-06 00:09:36 +02:00
// maven {
// name = "Haven's Maven"
// url = "https://hephaestus.dev/release"
// }
2021-02-11 19:31:15 +01:00
2021-01-28 06:57:36 +01:00
maven {
url = "https://www.cursemaven.com"
content {
includeGroup "curse.maven"
}
}
maven {
url = "https://server.bbkr.space/artifactory/libs-release"
content {
includeGroup "io.github.cottonmc"
}
}
// maven {
// name = "Ladysnake Libs"
// url = "https://dl.bintray.com/ladysnake/libs"
// }
2021-02-16 10:02:49 +01:00
2021-04-13 11:19:21 +02:00
maven {
name = 'Ladysnake Mods'
url = 'https://ladysnake.jfrog.io/artifactory/mods'
}
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 {
name = 'TerraformersMC'
url = 'https://maven.terraformersmc.com/'
}
2021-03-31 13:07:19 +02:00
2021-10-08 23:42:08 +02: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 {
accessWidenerPath = file('src/main/resources/dimdoors.accesswidener')
2021-03-23 03:44:08 +01:00
}
2021-01-08 03:38:43 +01:00
dependencies {
2021-08-15 13:26:01 +02:00
minecraft "com.mojang:minecraft:1.17.1"
mappings "net.fabricmc:yarn:1.17.1+build.38:v2"
2021-06-27 15:04:47 +02:00
modImplementation "net.fabricmc:fabric-loader:0.11.6"
2021-08-15 13:26:01 +02:00
modImplementation "net.fabricmc.fabric-api:fabric-api:0.37.2+1.17"
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")
2021-06-06 20:57:07 +02:00
includeCompile("me.shedaniel.cloth", "cloth-config-fabric", "5.0.34")
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-base", "3.0.0-nightly.1.17-pre2")
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-item", "3.0.0-nightly.1.17-pre2")
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-entity", "3.0.0-nightly.1.17-pre2")
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-level", "3.0.0-nightly.1.17-pre2")
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-util", "3.0.0-nightly.1.17-pre2")
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-world", "3.0.0-nightly.1.17-pre2")
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-chunk", "3.0.0-nightly.1.17-pre2")
2021-01-28 06:57:36 +01:00
2021-06-06 20:57:07 +02:00
modCompileOnly("com.terraformersmc:modmenu:2.0.0-beta.7") {
2021-02-11 16:10:28 +01:00
exclude module: "fabric-api"
}
2021-11-19 11:38:52 +01:00
modRuntimeOnly("com.terraformersmc:modmenu:2.0.0-beta.7") {
2021-03-22 18:39:32 +01:00
exclude module: "fabric-api"
}
2021-11-19 11:38:52 +01:00
modCompileOnly('mcp.mobius.waila:wthit:fabric-3.11.2') {
2021-03-22 11:41:09 +01:00
exclude module: "modmenu"
exclude module: "fabric-api"
}
2021-11-19 11:38:52 +01:00
modRuntimeOnly('mcp.mobius.waila:wthit:fabric-3.11.2') {
2021-03-22 11:41:09 +01:00
exclude module: "modmenu"
2021-02-11 16:10:28 +01:00
exclude module: "fabric-api"
}
2021-02-17 04:03:11 +01:00
modCompileOnly "me.shedaniel.cloth.api:cloth-datagen-api-v1:2.0.0"
2021-11-19 11:38:52 +01:00
modRuntimeOnly "me.shedaniel.cloth.api:cloth-datagen-api-v1:2.0.0"
modCompileOnly "curse.maven:worldedit-225608:3502100"
modRuntimeOnly "curse.maven:worldedit-225608:3502100"
2021-11-08 12:03:53 +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
2021-03-30 16:41:02 +02: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 {
if (project.hasProperty('curse_api_key')) {
apiKey = project.getProperty('curse_api_key')
}
project {
id = '284876'
2021-03-23 11:57:28 +01:00
changelog = file('changelog.txt').text
2021-03-08 17:32:28 +01:00
releaseType = 'beta'
2021-09-27 07:39:05 +02:00
addGameVersion '1.17.1'
2021-06-23 17:24:10 +02:00
addGameVersion 'Fabric'
2021-02-13 07:20:55 +01:00
mainArtifact(file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar")) {
2021-11-19 11:14:20 +01:00
displayName = "[1.17.1] Dimensional Doors ${version}"
2021-02-13 07:20:55 +01:00
}
afterEvaluate {
uploadTask.dependsOn("remapJar")
}
}
options {
forgeGradleIntegration = false
}
}
test {
workingDir = file('test')
2021-03-30 16:41:02 +02: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();
}
}