diff options
| author | shedaniel <daniel@shedaniel.me> | 2021-02-07 01:44:21 +0800 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2021-02-15 17:39:34 +0800 |
| commit | e41d9d568a7cacee068b069af739def36b0271aa (patch) | |
| tree | c3866792ec44063db64ee298ba2db6d26fd6d11f | |
| parent | c49a19add5c939e3ad3331a86df4819c9141de9a (diff) | |
| download | RoughlyEnoughItems-e41d9d568a7cacee068b069af739def36b0271aa.tar.gz RoughlyEnoughItems-e41d9d568a7cacee068b069af739def36b0271aa.tar.bz2 RoughlyEnoughItems-e41d9d568a7cacee068b069af739def36b0271aa.zip | |
Forgot to deploy the main jar
Signed-off-by: shedaniel <daniel@shedaniel.me>
| -rwxr-xr-x | build.gradle | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle index be8d6f905..b9f36182f 100755 --- a/build.gradle +++ b/build.gradle @@ -333,12 +333,12 @@ publishing { } repositories { - if (project.hasProperty('danielshe_pass')) { + if (System.getenv("MAVEN_PASS") != null) { maven { - url = "http://deploy.modmuss50.me/" + url = "https://deploy.shedaniel.me/" credentials { - username = "danielshe" - password = project.getProperty('danielshe_pass') + username = "shedaniel" + password = System.getenv("MAVEN_PASS") } } } |
