forked from Ladysnake/Requiem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
26 lines (23 loc) · 926 Bytes
/
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
archivesBaseName = "${rootProject.archivesBaseName}-${project.name.toLowerCase(Locale.ROOT)}"
group = "${rootProject.group}.${rootProject.archivesBaseName}"
dependencies {
implementation project(path: ":requiem-api", configuration: "namedElements")
implementation project(path: ":requiem-core", configuration: "namedElements")
implementation project(path: ":", configuration: "namedElements")
implementation project(path: ":pandemonium-api", configuration: "namedElements")
include project(":pandemonium-api")
modImplementation libs.bundles.requiredLibraries
modCompileOnly libs.modmenu
modCompileOnly libs.bundles.cloth
modCompileOnly (compatLibs.origins) { transitive = false }
modCompileOnly compatLibs.haema
}
jar {
from rootProject.files("LICENSE-CODE", "LICENSE-ART")
}
chenille {
configurePublishing {
withArtifactory()
withCurseforgeRelease()
}
}