-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (30 loc) · 991 Bytes
/
build.gradle
File metadata and controls
33 lines (30 loc) · 991 Bytes
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
buildscript {
configurations.configureEach {
resolutionStrategy {
force 'commons-io:commons-io:2.16.1'
force 'org.apache.commons:commons-compress:1.26.2'
}
}
}
plugins {
id "org.sonarqube" version "7.2.3.7755"
id "com.hypherionmc.modutils.modpublisher" version "2.2.1" apply false
// https://projects.neoforged.net/neoforged/moddevgradle
id "net.neoforged.moddev" version "2.0.141" apply false
// https://fabricmc.net/develop/
id "net.fabricmc.fabric-loom" version "1.16-SNAPSHOT" apply false
}
sonar {
properties {
property "sonar.projectKey", "Crystal-Nest_$mod_id_kebab"
property "sonar.organization", "crystal-nest"
property "sonar.projectVersion", mod_version
property "sonar.host.url", "https://sonarcloud.io"
property "sonar.qualitygate.wait", "true"
}
}
tasks.register("publishAll") {
group = "publishing"
description = "Publish all loader specific versions to all platforms"
dependsOn subprojects.publishLoader
}