Asbestos/build.gradle

109 lines
3.0 KiB
Groovy
Raw Normal View History

2018-11-03 22:22:32 +00:00
plugins {
2020-09-27 12:04:21 +00:00
id 'fabric-loom' version '0.5-SNAPSHOT'
2019-02-15 21:26:03 +00:00
id 'maven-publish'
2018-11-03 22:22:32 +00:00
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
2018-11-03 22:22:32 +00:00
archivesBaseName = project.archives_base_name
version = project.mod_version
2019-02-15 21:25:50 +00:00
group = project.maven_group
2018-11-03 22:22:32 +00:00
2020-11-11 23:22:11 +00:00
repositories {
maven {
2021-05-22 17:31:37 +00:00
url "http://maven.terraformersmc.com/releases/"
2020-11-11 23:22:11 +00:00
}
maven {
2021-05-22 17:31:37 +00:00
name = 'Ladysnake Mods'
url = 'https://ladysnake.jfrog.io/artifactory/mods'
}
maven {
url "https://maven.shedaniel.me/"
}
2020-11-11 23:22:11 +00:00
maven {
url "https://jitpack.io"
}
}
2018-11-06 09:51:23 +00:00
dependencies {
2019-02-15 21:26:03 +00:00
//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}"
2018-12-09 16:49:28 +00:00
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
2019-04-23 19:06:39 +00:00
2020-11-11 23:22:11 +00:00
// ModMenu
2021-05-22 17:31:37 +00:00
modApi("com.terraformersmc:modmenu:${modmenu_version}") {
2020-11-11 23:22:11 +00:00
exclude(group: "net.fabricmc.fabric-api")
}
// Cloth Config
modApi("me.shedaniel.cloth:cloth-config-fabric:${cloth_version}") {
exclude(group: "net.fabricmc.fabric-api")
}
2021-05-22 18:11:57 +00:00
include "me.shedaniel.cloth:cloth-config-fabric:${cloth_version}"
// CardinalComponentsAPI
modApi "io.github.onyxstudios.Cardinal-Components-API:cardinal-components-base:${cca_version}"
modApi "io.github.onyxstudios.Cardinal-Components-API:cardinal-components-entity:${cca_version}"
include "io.github.onyxstudios.Cardinal-Components-API:cardinal-components-base:${cca_version}"
include "io.github.onyxstudios.Cardinal-Components-API:cardinal-components-entity:${cca_version}"
2019-04-23 19:06:39 +00:00
// PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs.
// You may need to force-disable transitiveness on them.
2018-11-03 22:22:32 +00:00
}
2018-12-22 16:37:14 +00:00
processResources {
inputs.property "version", project.version
filesMatching("fabric.mod.json") {
expand "version": project.version
}
}
2019-02-15 20:55:33 +00:00
// 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) {
2019-02-15 21:26:03 +00:00
options.encoding = "UTF-8"
2019-02-15 20:55:33 +00:00
}
2018-12-22 16:37:14 +00:00
// 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"
2018-12-22 16:37:14 +00:00
from sourceSets.main.allSource
}
jar {
2019-02-15 21:26:03 +00:00
from "LICENSE"
}
// configure the maven publication
publishing {
2019-02-15 21:26:03 +00:00
publications {
mavenJava(MavenPublication) {
// add all the jars that should be included when publishing to maven
2019-08-02 14:07:32 +00:00
artifact(remapJar) {
2019-02-15 21:26:03 +00:00
builtBy remapJar
}
artifact(sourcesJar) {
builtBy remapSourcesJar
}
}
}
2019-02-15 21:26:03 +00:00
// select the repositories you want to publish to
repositories {
// uncomment to publish to the local maven
// mavenLocal()
}
}