2021-06-11 14:33:10 -04:00
|
|
|
plugins {
|
2021-12-03 16:37:35 -05:00
|
|
|
id "com.github.johnrengelman.shadow" version "7.1.0"
|
2021-06-11 14:33:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
architectury {
|
|
|
|
platformSetupLoomIde()
|
|
|
|
fabric()
|
|
|
|
}
|
|
|
|
|
2021-12-03 16:37:35 -05:00
|
|
|
configurations {
|
|
|
|
common
|
|
|
|
shadowCommon // Don't use shadow from the shadow plugin because we don't want IDEA to index this.
|
|
|
|
compileClasspath.extendsFrom common
|
|
|
|
runtimeClasspath.extendsFrom common
|
|
|
|
developmentFabric.extendsFrom common
|
|
|
|
}
|
|
|
|
|
2021-06-11 14:33:10 -04:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven {
|
|
|
|
name = 'Fabric-Permission-API'
|
|
|
|
url 'https://oss.sonatype.org/content/repositories/snapshots'
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
name = "Gunpowder"
|
|
|
|
url = "https://maven.martmists.com/releases"
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
name = 'Ladysnake Mods'
|
|
|
|
url = 'https://ladysnake.jfrog.io/artifactory/mods'
|
|
|
|
content {
|
|
|
|
includeGroup 'io.github.ladysnake'
|
|
|
|
includeGroupByRegex 'io\\.github\\.onyxstudios.*'
|
|
|
|
}
|
|
|
|
}
|
2021-07-20 13:16:29 -04:00
|
|
|
maven {
|
|
|
|
name = "HavenKing"
|
|
|
|
url = "https://hephaestus.dev/release"
|
|
|
|
}
|
2021-07-20 18:27:08 -04:00
|
|
|
maven {
|
|
|
|
name = "FTB"
|
|
|
|
url = "https://maven.saps.dev/minecraft"
|
|
|
|
}
|
2022-02-27 20:31:56 -05:00
|
|
|
maven {
|
|
|
|
name = "CurseMaven"
|
|
|
|
url "https://www.cursemaven.com"
|
|
|
|
}
|
2022-04-06 15:31:13 -04:00
|
|
|
maven { url = "https://jitpack.io" }
|
2022-11-26 14:33:32 -05:00
|
|
|
maven {
|
|
|
|
url = "https://maven.jamieswhiteshirt.com/libs-release/"
|
|
|
|
content {
|
|
|
|
includeGroup 'com.jamieswhiteshirt'
|
|
|
|
}
|
|
|
|
}
|
2021-06-11 14:33:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
modImplementation "net.fabricmc:fabric-loader:${rootProject.loader_version}"
|
|
|
|
|
|
|
|
// Fabric API. This is technically optional, but you probably want it anyway.
|
|
|
|
modImplementation "net.fabricmc.fabric-api:fabric-api:${rootProject.fabric_version}"
|
2022-07-01 12:24:47 -04:00
|
|
|
|
2021-12-03 16:37:35 -05:00
|
|
|
common(project(path: ":common", configuration: "namedElements")) { transitive false }
|
|
|
|
shadowCommon(project(path: ":common", configuration: "transformProductionFabric")) { transitive false }
|
2021-12-05 07:21:22 -05:00
|
|
|
|
2021-06-11 14:33:10 -04:00
|
|
|
modImplementation "me.lucko:fabric-permissions-api:${rootProject.fabric_permissions_api}"
|
2022-01-08 11:29:56 -05:00
|
|
|
|
2022-07-01 12:24:47 -04:00
|
|
|
modImplementation octo_economy_api
|
2022-08-03 16:50:16 -04:00
|
|
|
modCompileOnly diamond_economy
|
2022-01-08 11:29:56 -05:00
|
|
|
|
2021-12-19 15:02:39 -05:00
|
|
|
modCompileOnly "io.github.ladysnake:PlayerAbilityLib:${rootProject.player_ability_lib}"
|
2021-07-20 13:16:29 -04:00
|
|
|
|
2022-08-03 16:50:16 -04:00
|
|
|
modCompileOnly "dev.ftb.mods:ftb-ranks-fabric:${rootProject.ftb_ranks}"
|
2022-04-06 15:31:13 -04:00
|
|
|
|
2022-11-26 14:33:32 -05:00
|
|
|
modRuntimeOnly "dev.ftb.mods:ftb-chunks-fabric:${rootProject.ftb_chunks}"
|
|
|
|
|
|
|
|
modRuntimeOnly "dev.ftb.mods:ftb-chunks-fabric:${rootProject.ftb_chunks}"
|
|
|
|
//CompileOnly cause too many dependency
|
|
|
|
modCompileOnly goml_reserved
|
|
|
|
modCompileOnly include("com.jamieswhiteshirt:rtree-3i-lite-fabric:0.3.0")
|
2021-06-11 14:33:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
processResources {
|
|
|
|
inputs.property "version", project.version
|
|
|
|
|
|
|
|
filesMatching("fabric.mod.json") {
|
|
|
|
expand "version": project.version
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
configurations = [project.configurations.shadowCommon]
|
|
|
|
classifier "dev-shadow"
|
|
|
|
}
|
|
|
|
|
|
|
|
remapJar {
|
|
|
|
input.set shadowJar.archiveFile
|
|
|
|
dependsOn shadowJar
|
2022-11-25 16:36:13 -05:00
|
|
|
classifier "fabric"
|
2021-06-11 14:33:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
classifier "dev"
|
|
|
|
}
|
|
|
|
|
|
|
|
sourcesJar {
|
|
|
|
def commonSources = project(":common").sourcesJar
|
|
|
|
dependsOn commonSources
|
|
|
|
from commonSources.archiveFile.map { zipTree(it) }
|
2022-11-25 16:36:13 -05:00
|
|
|
classifier "fabric-sources"
|
2021-06-11 14:33:10 -04:00
|
|
|
}
|
|
|
|
|
2021-12-03 16:37:35 -05:00
|
|
|
components.java {
|
|
|
|
withVariantsFromConfiguration(project.configurations.shadowRuntimeElements) {
|
|
|
|
skip()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-20 16:57:34 -04:00
|
|
|
task apiJar(type: Jar, dependsOn: classes) {
|
|
|
|
archiveClassifier.set "fabric-api-source"
|
|
|
|
from project(":common").sourceSets.main.output + sourceSets.main.output
|
|
|
|
include "io/github/flemmli97/flan/api/**"
|
|
|
|
include "fabric.mod_api.json" //Include this so it gets remapped as a dependency
|
|
|
|
rename("fabric.mod_api.json", "fabric.mod.json")
|
|
|
|
}
|
|
|
|
|
2021-07-20 18:27:08 -04:00
|
|
|
task remapApiJar(type: net.fabricmc.loom.task.RemapJarTask) {
|
2021-07-20 16:57:34 -04:00
|
|
|
archiveClassifier.set "fabric-api"
|
|
|
|
input.set apiJar.archiveFile
|
|
|
|
addNestedDependencies = false
|
|
|
|
dependsOn apiJar
|
|
|
|
from sourceSets.main.output
|
|
|
|
/* Putting it here doesnt seem to work...
|
|
|
|
include "fabric.mod_api.json" //Include this so it gets remapped as a dependency
|
|
|
|
rename("fabric.mod_api.json", "fabric.mod.json")
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2021-06-11 14:33:10 -04:00
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
mavenJava(MavenPublication) {
|
|
|
|
// add all the jars that should be included when publishing to maven
|
|
|
|
artifact(remapJar) {
|
2022-11-25 16:36:13 -05:00
|
|
|
classifier null
|
2021-06-11 14:33:10 -04:00
|
|
|
builtBy remapJar
|
|
|
|
}
|
|
|
|
artifact(sourcesJar) {
|
2022-11-25 16:36:13 -05:00
|
|
|
classifier "sources"
|
2021-06-11 14:33:10 -04:00
|
|
|
builtBy remapSourcesJar
|
|
|
|
}
|
2021-07-20 16:57:34 -04:00
|
|
|
artifact(remapApiJar)
|
2021-06-11 14:33:10 -04:00
|
|
|
artifactId project.archives_base_name
|
2022-11-23 18:48:21 -05:00
|
|
|
version project.version + "-fabric"
|
2021-06-11 14:33:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2021-06-13 17:07:10 -04:00
|
|
|
maven {
|
2021-06-11 14:33:10 -04:00
|
|
|
url "https://gitlab.com/api/v4/projects/21830712/packages/maven"
|
|
|
|
//url "https://maven.pkg.github.com/flemmli97/<>"
|
|
|
|
credentials {
|
|
|
|
username = project.findProperty("gpr.user") ?: System.getenv("GPR_USER")
|
|
|
|
password = project.findProperty("gpr.gitlab.token") ?: System.getenv("GPR_GITLAB_TOKEN")
|
|
|
|
//password = project.findProperty("gpr.github.token") ?: System.getenv("GPR_TOKEN")
|
|
|
|
}
|
2021-06-13 17:07:10 -04:00
|
|
|
}
|
2021-06-11 14:33:10 -04:00
|
|
|
}
|
2021-06-13 15:02:33 -04:00
|
|
|
}
|