Skip to content

Commit dfe99d8

Browse files
Update build.gradle
1 parent 8d6d621 commit dfe99d8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ dependencies {
8181
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
8282

8383
// DevAuth
84-
modRuntimeOnly "me.djtheredstoner:DevAuth-fabric:${devauth_version}"
84+
modLocalRuntime "me.djtheredstoner:DevAuth-fabric:${devauth_version}"
8585

8686
// Netty
8787
includeApi "io.netty:netty-codec-http:${project.netty_version}"
@@ -150,8 +150,8 @@ publishing {
150150
name = "OffsetMonkey538"
151151
url = "https://maven.offsetmonkey538.top/releases"
152152
credentials {
153-
username = System.getenv("MAVEN_USERNAME")
154-
password = System.getenv("MAVEN_PASSWORD")
153+
username = providers.gradleProperty("OffsetMonkey538Username").getOrElse(System.getenv("MAVEN_USERNAME"))
154+
password = providers.gradleProperty("OffsetMonkey538Password").getOrElse(System.getenv("MAVEN_PASSWORD"))
155155
}
156156
authentication {
157157
basic(BasicAuthentication)

0 commit comments

Comments
 (0)