blob: e3a5429949612f36511cfbb3d68250be6315a505 (
plain)
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
|
plugins {
id 'fabric-loom' version '0.2.0-SNAPSHOT'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
archivesBaseName = "RoughlyEnoughItems"
version = "2.3.0.52"
def minecraftVersion = "19w08a"
def yarnVersion = "19w08a.4"
def fabricVersion = "0.2.2.103"
def pluginLoaderVersion = "1.14-1.0.6-8"
minecraft {
}
processResources {
filesMatching('fabric.mod.json') {
expand 'version': project.version
}
inputs.property "version", project.version
}
repositories {
maven { url "https://tehnut.info/maven/" }
}
dependencies {
minecraft "com.mojang:minecraft:${minecraftVersion}"
mappings "net.fabricmc:yarn:${yarnVersion}"
modCompile "net.fabricmc:fabric-loader:0.3.7.109"
// Fabric API. This is technically optional, but you probably want it anyway.
modCompile "net.fabricmc:fabric:${fabricVersion}"
modCompile "info.tehnut.pluginloader:plugin-loader:${pluginLoaderVersion}"
}
// 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
}
|