Shadow/build.gradle

116 lines
2.6 KiB
Groovy
Raw Normal View History

2021-12-18 12:45:40 -05:00
plugins {
id 'fabric-loom' version '0.10-SNAPSHOT'
id 'maven-publish'
}
2022-01-03 18:17:57 -05:00
repositories {
flatDir {
dirs 'lib'
}
2022-03-29 19:36:46 -04:00
maven {
name = "meteor-maven"
url = "https://maven.meteordev.org"
}
2022-04-22 04:08:26 -04:00
mavenCentral()
2022-01-03 18:17:57 -05:00
}
2021-12-18 12:48:50 -05:00
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
2021-12-18 12:45:40 -05:00
archivesBaseName = project.archives_base_name
version = project.mod_version
group = project.maven_group
minecraft {
}
2021-12-18 13:30:00 -05:00
configurations {
impl
}
2022-03-29 16:40:46 -04:00
loom {
accessWidenerPath = file("src/main/resources/shadow.accessWidener")
}
2021-12-18 12:45:40 -05:00
dependencies {
//to change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
2022-04-19 19:27:39 -04:00
Set<String> apiModules = [
"fabric-api-base",
"fabric-item-groups-v0",
"fabric-resource-loader-v0"
]
// Add each module as a dependency
apiModules.forEach {
2022-04-22 04:08:26 -04:00
include(modImplementation(fabricApi.module(it, project.fabric_api_version)))
2022-04-19 19:27:39 -04:00
}
2022-01-14 14:06:42 -05:00
// modImplementation ("net.fabricmc.fabric-api:fabric-resource-loader:0.1.0")
2021-12-18 13:30:00 -05:00
compileOnly 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
2022-03-29 19:36:46 -04:00
impl("meteordevelopment:discord-ipc:1.1")
2022-01-03 18:17:57 -05:00
impl(name: "xauthlib-1.0.0")
2021-12-18 13:30:00 -05:00
configurations.impl.dependencies.each {
2022-01-03 18:17:57 -05:00
implementation(it)
include(it)
2021-12-18 13:30:00 -05:00
}
2021-12-18 12:45:40 -05:00
}
processResources {
inputs.property "version", project.version
2021-12-18 12:48:50 -05:00
filesMatching("fabric.mod.json") {
2021-12-18 12:45:40 -05:00
expand "version": project.version
}
}
// ensure that the encoding is set to UTF-8, no matter what the system default is
// this fixes some edge cases with special characters not displaying correctly
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
// if it is present.
// If you remove this task, sources will not be generated.
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = "sources"
from sourceSets.main.allSource
}
jar {
from "LICENSE"
}
// configure the maven publication
publishing {
publications {
mavenJava(MavenPublication) {
// add all the jars that should be included when publishing to maven
artifact(jar) {
builtBy remapJar
}
artifact("${project.buildDir.absolutePath}/libs/${archivesBaseName}-${project.version}.jar"){
builtBy remapJar
}
artifact(sourcesJar) {
builtBy remapSourcesJar
}
}
}
// select the repositories you want to publish to
repositories {
// uncomment to publish to the local maven
// mavenLocal()
}
2022-04-19 18:07:35 -04:00
}