Compare commits
42 Commits
be06e5219c
...
renovate/o
| Author | SHA1 | Date | |
|---|---|---|---|
| 654aec163c | |||
| 368619692c | |||
| 8380717e27 | |||
| a348b77756 | |||
| ff48b3d6eb | |||
| b1316f6bf5 | |||
| 9e2a67f69d | |||
| 2f7fa30f1b | |||
| f5b69a3c90 | |||
| e06be421fd | |||
| 92f34b959e | |||
| 33e8c01af3 | |||
| 578262d930 | |||
| df2ababe80 | |||
| 4360b0da84 | |||
| 665ef81e35 | |||
| 0b6edbb6f8 | |||
| 2fcc3a36ab | |||
| 67257c0822 | |||
| 125dc776ab | |||
| 9f281abe40 | |||
| dd107c69e9 | |||
| a7d45dabfe | |||
| 8b5b474081 | |||
| b1e2230bca | |||
| 600e777e3b | |||
| 1585dfebda | |||
| 7aff5d6494 | |||
| e9231c708e | |||
| fa2fa83107 | |||
| dfacab21d5 | |||
| 1367cf852b | |||
| b2998a74e8 | |||
| d0d96aa595 | |||
| bc3926e928 | |||
| 49bf602271 | |||
| a8ba62a719 | |||
| 83fa43c9c9 | |||
| 83d1af9ede | |||
| f4d4015afc | |||
| b9d82bca5b | |||
| 0de8e247cb |
38
build.gradle
38
build.gradle
@@ -80,7 +80,7 @@ buildscript {
|
||||
|
||||
dependencies {
|
||||
classpath 'com.github.johnrengelman:shadow:8.1.1'
|
||||
classpath 'com.github.ben-manes:gradle-versions-plugin:0.52.0'
|
||||
classpath 'com.github.ben-manes:gradle-versions-plugin:0.53.0'
|
||||
}
|
||||
}
|
||||
|
||||
@@ -90,18 +90,18 @@ repositories {
|
||||
|
||||
dependencies {
|
||||
// Logging
|
||||
api 'org.slf4j:slf4j-simple:2.0.13'
|
||||
api 'org.slf4j:slf4j-simple:2.0.17'
|
||||
|
||||
// Easy file management
|
||||
api 'commons-io:commons-io:2.20.0'
|
||||
api 'commons-io:commons-io:2.21.0'
|
||||
|
||||
// Config management
|
||||
api 'org.yaml:snakeyaml:1.33'
|
||||
api 'org.yaml:snakeyaml:2.6'
|
||||
|
||||
// Dependencies from old Matrix-java-sdk
|
||||
api 'org.apache.commons:commons-lang3:3.14.0'
|
||||
api 'com.squareup.okhttp3:okhttp:4.12.0'
|
||||
api 'commons-codec:commons-codec:1.19.0'
|
||||
api 'org.apache.commons:commons-lang3:3.20.0'
|
||||
api 'com.squareup.okhttp3:okhttp:5.3.2'
|
||||
api 'commons-codec:commons-codec:1.21.0'
|
||||
|
||||
// ORMLite
|
||||
api 'com.j256.ormlite:ormlite-jdbc:6.1'
|
||||
@@ -113,54 +113,54 @@ dependencies {
|
||||
api 'org.apache.directory.api:api-all:2.1.7'
|
||||
|
||||
// DNS lookups
|
||||
api 'dnsjava:dnsjava:3.6.3'
|
||||
api 'dnsjava:dnsjava:3.6.4'
|
||||
|
||||
// HTTP connections
|
||||
api 'org.apache.httpcomponents:httpclient:4.5.14'
|
||||
|
||||
// Phone numbers validation
|
||||
api 'com.googlecode.libphonenumber:libphonenumber:8.13.36'
|
||||
api 'com.googlecode.libphonenumber:libphonenumber:8.13.55'
|
||||
|
||||
// E-mail sending
|
||||
api 'javax.mail:javax.mail-api:1.6.2'
|
||||
api 'com.sun.mail:javax.mail:1.6.2'
|
||||
|
||||
// Google Firebase Authentication backend
|
||||
api 'com.google.firebase:firebase-admin:9.2.0'
|
||||
api 'com.google.firebase:firebase-admin:9.8.0'
|
||||
|
||||
// Connection Pool
|
||||
api 'com.mchange:c3p0:0.11.2'
|
||||
api 'com.mchange:c3p0:0.12.0'
|
||||
|
||||
// SQLite
|
||||
api 'org.xerial:sqlite-jdbc:3.50.3.0'
|
||||
api 'org.xerial:sqlite-jdbc:3.51.3.0'
|
||||
|
||||
// PostgreSQL
|
||||
api 'org.postgresql:postgresql:42.7.7'
|
||||
api 'org.postgresql:postgresql:42.7.10'
|
||||
|
||||
// MariaDB/MySQL
|
||||
api 'org.mariadb.jdbc:mariadb-java-client:3.5.6'
|
||||
api 'org.mariadb.jdbc:mariadb-java-client:3.5.8'
|
||||
|
||||
// UNIX sockets
|
||||
api 'com.kohlschutter.junixsocket:junixsocket-core:2.9.1'
|
||||
api 'com.kohlschutter.junixsocket:junixsocket-core:2.10.1'
|
||||
|
||||
// Twilio SDK for SMS
|
||||
api 'com.twilio.sdk:twilio:10.9.2'
|
||||
|
||||
// SendGrid SDK to send emails from GCE
|
||||
api 'com.sendgrid:sendgrid-java:4.10.2'
|
||||
api 'com.sendgrid:sendgrid-java:4.10.3'
|
||||
|
||||
// ZT-Exec for exec identity store
|
||||
api 'org.zeroturnaround:zt-exec:1.12'
|
||||
|
||||
// HTTP server
|
||||
api 'io.undertow:undertow-core:2.3.19.Final'
|
||||
api 'io.undertow:undertow-core:2.3.24.Final'
|
||||
|
||||
// Command parser for AS interface
|
||||
api 'commons-cli:commons-cli:1.7.0'
|
||||
api 'commons-cli:commons-cli:1.11.0'
|
||||
|
||||
testImplementation 'junit:junit:4.13.2'
|
||||
testImplementation 'com.github.tomakehurst:wiremock:3.0.1'
|
||||
testImplementation 'com.unboundid:unboundid-ldapsdk:7.0.0'
|
||||
testImplementation 'com.unboundid:unboundid-ldapsdk:7.0.4'
|
||||
testImplementation 'com.icegreen:greenmail:1.6.15'
|
||||
}
|
||||
|
||||
|
||||
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,6 +1,6 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.4-all.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
|
||||
Reference in New Issue
Block a user