File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,12 @@ allprojects {
30
30
repositories {
31
31
mavenLocal()
32
32
maven { url ' https://libraries.minecraft.net/' }
33
+ maven { url " https://maven.pkg.github.com/linktosriram/s3-lite"
34
+ credentials {
35
+ username = project. findProperty(" gpr.user" ) ?: System . getenv(" USERNAME" )
36
+ password = project. findProperty(" gpr.key" ) ?: System . getenv(" TOKEN" )
37
+ }
38
+ }
33
39
maven { url " https://oss.sonatype.org/content/repositories/releases" }
34
40
maven { url " https://oss.sonatype.org/content/repositories/snapshots" }
35
41
maven { url " https://repo.mikeprimm.com" }
Original file line number Diff line number Diff line change 1
1
org.gradle.jvmargs =-Xmx4G
2
2
org.gradle.daemon =false
3
3
org.gradle.parallel =false
4
+ # GitHub user and password (workaround for OSSRH beeing sunset - https://central.sonatype.org/pages/ossrh-eol/
5
+ # https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#creating-a-personal-access-token-classic
6
+ # https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-gradle-registry#authenticating-to-github-packages
7
+ gpr.user =""
8
+ gpr.key =""
You can’t perform that action at this time.
0 commit comments