-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathbuild.gradle
35 lines (29 loc) · 1.16 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
apply from: "https://raw.githubusercontent.com/refinedmods/refinedarchitect/v0.11.4/helper.gradle"
repositories {
maven {
url = uri("https://maven.pkg.github.com/refinedmods/refinedstorage")
/* As of december 2021, GitHub packages requires authentication.
The password below is a personal access token that has read access to the Refined Mods repos.
It can be reused in other projects.
See: https://github.community/t/download-from-github-package-registry-without-authentication/14407/38 and
https://github.community/t/download-from-github-package-registry-without-authentication/14407/44
*/
credentials {
username = "anything"
password = "\u0067hp_oGjcDFCn8jeTzIj4Ke9pLoEVtpnZMP4VQgaX"
}
}
}
group = 'com.refinedmods'
forgeProject("refinedstorageaddons")
archivesBaseName = 'refinedstorageaddons'
enablePublishing()
enableCurseForge(272302)
enableModrinth("Z4Z5ccuT")
enableJavadoc()
dependencies {
compileOnly "com.refinedmods:refinedstorage:1.13.0-beta.2"
runtimeOnly("com.refinedmods:refinedstorage:1.13.0-beta.2") {
transitive = false
}
}