-
Notifications
You must be signed in to change notification settings - Fork 55
/
build.gradle
79 lines (66 loc) · 2.22 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
74
75
76
77
78
79
plugins {
id 'eclipse'
id 'idea'
id 'com.modrinth.minotaur' version '2.+'
id 'net.neoforged.gradle.userdev' version '7.0.+'
}
repositories {
maven {
url "https://maven.su5ed.dev/releases"
}
maven {
url "https://cursemaven.com"
content {
includeGroup "curse.maven"
}
}
maven {
url = "https://api.modrinth.com/maven"
}
maven { url = 'https://maven.fabricmc.net' }
}
group= "team.creative" + project.mod_id
java.toolchain.languageVersion = JavaLanguageVersion.of(21)
java.sourceSets.create("api") {
java {
srcDir("src/api/java")
}
compileClasspath += sourceSets.main.compileClasspath
runtimeClasspath += sourceSets.main.runtimeClasspath
}
sourceSets.main.compileClasspath += sourceSets.api.output
sourceSets.main.runtimeClasspath += sourceSets.api.output
project.evaluationDependsOn(":CreativeCore")
runs {
configureEach {
workingDirectory project.file('run')
systemProperty 'forge.logging.console.level', 'debug'
}
client {
}
server {
}
}
dependencies {
implementation "net.neoforged:neoforge:${forge_version}"
implementation project(':CreativeCore')
}
modDependencies = [
[ modId: "creativecore", type: "required", ordering: "NONE", side: "BOTH", versionRange: "[" + creativecore_version + ",)" ]
]
modMixins = [ "littletiles.mixins.json" ]
modProperties = [
'',
'["lithium:options"]',
' "mixin.shapes.specialized_shapes" = false',
' "mixin.entity.collisions" = false'
]
modImplemented = [
[ name: "maven.modrinth:sodium:zBRij2cH", disabled: false ],
[ name: "curse.maven:theoneprobe-245211:5502323", disabled: true ],
[ name: "net.fabricmc:fabric-loader:${project.fabric_version}", disabled: true ],
[ name: "org.sinytra.forgified-fabric-api:fabric-api-base:0.4.42+d1308ded19" , disabled: true ],
[ name: "org.sinytra.forgified-fabric-api:fabric-renderer-api-v1:3.4.0+acb05a3919", disabled: true ],
[ name: "org.sinytra.forgified-fabric-api:fabric-rendering-data-attachment-v1:0.3.48+73761d2e19", disabled: true ],
[ name: "org.sinytra.forgified-fabric-api:fabric-block-view-api-v2:1.0.10+9afaaf8c19", disabled: true ],
]