-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
73 lines (59 loc) · 2.2 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
plugins {
id 'fabric-loom' version '0.8-SNAPSHOT'
id 'org.jetbrains.gradle.plugin.idea-ext' version '0.7'
}
sourceCompatibility = 1.16
targetCompatibility = 1.16
archivesBaseName = project.archives_base_name
version = project.mod_version+"+"+project.minecraft_version
repositories {
maven { url = "https://maven.fabricmc.net/" }
maven { url = "https://jitpack.io" }
maven { url = "https://maven.shedaniel.me/" }
maven { url = "https://server.bbkr.space/artifactory/libs-release" }
flatDir {
dirs "libs"
}
}
dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
modImplementation "io.github.prospector:modmenu:${project.mod_menu_version}"
modImplementation ("me.shedaniel:RoughlyEnoughItems-fabric:${project.rei_version}") { exclude(module: "ModMenu") }
implementation 'org.jetbrains:annotations:15.0'
compileOnly "com.google.code.findbugs:jsr305:3.0.2"
//modImplementation "ninjaphenix.ninjatips:NinjaTips:1.0.31.15"
//modImplementation "java.io.github.giantnuker.fabric.tooltipwrap:tooltipwrap:1.0.2"
modImplementation "com.github.Vexatos:Flamingo:${project.flamingo_version}"
/*
modImplementation "io.github.cottonmc:LibDP:${project.libcd_version}"
modImplementation "io.github.cottonmc:Parchment:${project.parchment_version}"
modImplementation "com.github.lambdaurora:spruceui:${project.spruceui_version}"
modImplementation "com.github.lambdaurora.LambdaControls:fabric:${project.lambdacontrols_version}"
*/
}
processResources {
inputs.property "version", project.version
filesMatching("fabric.mod.json") {
expand "version": project.version
}
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding = "UTF-8"
it.options.release = 16
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = "sources"
from sourceSets.main.allSource
}
jar {
from "LICENSE.md"
}
idea.project.settings {
delegateActions {
delegateBuildRunToGradle = false
testRunner = org.jetbrains.gradle.ext.ActionDelegationConfig.TestRunner.PLATFORM
}
}