mirror of
https://github.com/TeamPiped/Piped-Backend
synced 2025-11-06 23:20:11 +01:00
Compare commits
4 Commits
2b3a2785dd
...
b3281385ce
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b3281385ce | ||
|
|
c5921f6b70 | ||
|
|
946b3762a9 | ||
|
|
e36bbd0445 |
@ -18,9 +18,9 @@ dependencies {
|
||||
implementation 'org.bouncycastle:bcprov-jdk18on:1.81'
|
||||
implementation 'com.github.FireMasterK:NewPipeExtractor:92809cedefd89ce68bc4de8763e9d5f2760f5899'
|
||||
implementation 'com.github.FireMasterK:nanojson:a507525e549a836c3a8b6ab7090dca38e92942ef'
|
||||
implementation 'com.fasterxml.jackson.core:jackson-core:2.19.2'
|
||||
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.19.2'
|
||||
implementation 'com.fasterxml.jackson.core:jackson-databind:2.19.2'
|
||||
implementation 'com.fasterxml.jackson.core:jackson-core:2.20.0'
|
||||
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.20'
|
||||
implementation 'com.fasterxml.jackson.core:jackson-databind:2.20.0'
|
||||
implementation 'com.rometools:rome:2.1.0'
|
||||
implementation 'com.rometools:rome-modules:2.1.0'
|
||||
implementation 'org.jsoup:jsoup:1.21.2'
|
||||
|
||||
@ -166,8 +166,8 @@ public class Constants {
|
||||
S3_CLIENT = null;
|
||||
}
|
||||
System.getenv().forEach((key, value) -> {
|
||||
if (key.startsWith("hibernate"))
|
||||
hibernateProperties.put(key, value);
|
||||
if (key.startsWith("HIBERNATE"))
|
||||
hibernateProperties.put(key.replace("__", ".").toLowerCase(), value);
|
||||
});
|
||||
MATRIX_SERVER = getProperty(prop, "MATRIX_SERVER", "https://matrix-client.matrix.org");
|
||||
MATRIX_TOKEN = getProperty(prop, "MATRIX_TOKEN");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user