-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (27 loc) · 985 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
27
28
29
30
31
32
33
34
plugins {
id 'java-library'
}
apply from: "https://raw.githubusercontent.com/refinedmods/refinedarchitect/v0.13.4/helper.gradle"
group = 'com.refinedmods.refinedstorage'
forgeProject("refinedstorage_curios_integration")
archivesBaseName = 'refinedstorage-curios-integration'
repositories {
maven {
url = uri("https://maven.pkg.github.com/refinedmods/refinedstorage2")
credentials {
username = "anything"
password = "\u0067hp_oGjcDFCn8jeTzIj4Ke9pLoEVtpnZMP4VQgaX"
}
}
maven {
name = 'Curios'
url = "https://maven.theillusivec4.top/"
}
}
dependencies {
api "com.refinedmods.refinedstorage2:refinedstorage2-platform-forge:${refinedstorageVersion}"
runtimeOnly "top.theillusivec4.curios:curios-neoforge:${curiosVersion}"
compileOnlyApi "top.theillusivec4.curios:curios-neoforge:${curiosVersion}:api"
}
enablePublishing()
enableSonarQube("refinedmods_refinedstorage-curios-integration")