-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathbuild.gradle
26 lines (22 loc) · 888 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
apply from: "https://raw.githubusercontent.com/refinedmods/refinedarchitect/v${gradle.ext.refinedArchitectVersion}/helper.gradle"
subprojects {
group = 'com.refinedmods.refinedstorage'
ext {
apis = [
':refinedstorage-core-api',
':refinedstorage-resource-api',
':refinedstorage-storage-api',
':refinedstorage-network-api',
':refinedstorage-network',
':refinedstorage-grid-api',
':refinedstorage-query-parser'
]
compileApis = [':refinedstorage-platform-api']
}
}
enableSonarQube("refinedmods_refinedstorage2")
sonarqube {
properties {
property "sonar.coverage.exclusions", "refinedstorage-platform-neoforge/**/*,refinedstorage-platform-fabric/**/*,refinedstorage-platform-common/**/*,refinedstorage-platform-api/**/*"
}
}