Compare commits
1 Commits
master
...
44430679b5
| Author | SHA1 | Date | |
|---|---|---|---|
| 44430679b5 |
36
build.gradle
36
build.gradle
@@ -80,7 +80,7 @@ buildscript {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.github.johnrengelman:shadow:8.1.1'
|
classpath 'com.github.johnrengelman:shadow:8.1.1'
|
||||||
classpath 'com.github.ben-manes:gradle-versions-plugin:0.53.0'
|
classpath 'com.github.ben-manes:gradle-versions-plugin:0.52.0'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -90,18 +90,18 @@ repositories {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
// Logging
|
// Logging
|
||||||
api 'org.slf4j:slf4j-simple:2.0.17'
|
api 'org.slf4j:slf4j-simple:2.0.13'
|
||||||
|
|
||||||
// Easy file management
|
// Easy file management
|
||||||
api 'commons-io:commons-io:2.21.0'
|
api 'commons-io:commons-io:2.20.0'
|
||||||
|
|
||||||
// Config management
|
// Config management
|
||||||
api 'org.yaml:snakeyaml:1.33'
|
api 'org.yaml:snakeyaml:1.33'
|
||||||
|
|
||||||
// Dependencies from old Matrix-java-sdk
|
// Dependencies from old Matrix-java-sdk
|
||||||
api 'org.apache.commons:commons-lang3:3.20.0'
|
api 'org.apache.commons:commons-lang3:3.18.0'
|
||||||
api 'com.squareup.okhttp3:okhttp:5.3.2'
|
api 'com.squareup.okhttp3:okhttp:5.1.0'
|
||||||
api 'commons-codec:commons-codec:1.21.0'
|
api 'commons-codec:commons-codec:1.19.0'
|
||||||
|
|
||||||
// ORMLite
|
// ORMLite
|
||||||
api 'com.j256.ormlite:ormlite-jdbc:6.1'
|
api 'com.j256.ormlite:ormlite-jdbc:6.1'
|
||||||
@@ -113,54 +113,54 @@ dependencies {
|
|||||||
api 'org.apache.directory.api:api-all:2.1.7'
|
api 'org.apache.directory.api:api-all:2.1.7'
|
||||||
|
|
||||||
// DNS lookups
|
// DNS lookups
|
||||||
api 'dnsjava:dnsjava:3.6.4'
|
api 'dnsjava:dnsjava:3.6.3'
|
||||||
|
|
||||||
// HTTP connections
|
// HTTP connections
|
||||||
api 'org.apache.httpcomponents:httpclient:4.5.14'
|
api 'org.apache.httpcomponents:httpclient:4.5.14'
|
||||||
|
|
||||||
// Phone numbers validation
|
// Phone numbers validation
|
||||||
api 'com.googlecode.libphonenumber:libphonenumber:8.13.55'
|
api 'com.googlecode.libphonenumber:libphonenumber:8.13.36'
|
||||||
|
|
||||||
// E-mail sending
|
// E-mail sending
|
||||||
api 'javax.mail:javax.mail-api:1.6.2'
|
api 'javax.mail:javax.mail-api:1.6.2'
|
||||||
api 'com.sun.mail:javax.mail:1.6.2'
|
api 'com.sun.mail:javax.mail:1.6.2'
|
||||||
|
|
||||||
// Google Firebase Authentication backend
|
// Google Firebase Authentication backend
|
||||||
api 'com.google.firebase:firebase-admin:9.8.0'
|
api 'com.google.firebase:firebase-admin:9.2.0'
|
||||||
|
|
||||||
// Connection Pool
|
// Connection Pool
|
||||||
api 'com.mchange:c3p0:0.12.0'
|
api 'com.mchange:c3p0:0.11.2'
|
||||||
|
|
||||||
// SQLite
|
// SQLite
|
||||||
api 'org.xerial:sqlite-jdbc:3.51.3.0'
|
api 'org.xerial:sqlite-jdbc:3.50.3.0'
|
||||||
|
|
||||||
// PostgreSQL
|
// PostgreSQL
|
||||||
api 'org.postgresql:postgresql:42.7.10'
|
api 'org.postgresql:postgresql:42.7.7'
|
||||||
|
|
||||||
// MariaDB/MySQL
|
// MariaDB/MySQL
|
||||||
api 'org.mariadb.jdbc:mariadb-java-client:3.5.7'
|
api 'org.mariadb.jdbc:mariadb-java-client:3.5.6'
|
||||||
|
|
||||||
// UNIX sockets
|
// UNIX sockets
|
||||||
api 'com.kohlschutter.junixsocket:junixsocket-core:2.10.1'
|
api 'com.kohlschutter.junixsocket:junixsocket-core:2.9.1'
|
||||||
|
|
||||||
// Twilio SDK for SMS
|
// Twilio SDK for SMS
|
||||||
api 'com.twilio.sdk:twilio:10.9.2'
|
api 'com.twilio.sdk:twilio:10.9.2'
|
||||||
|
|
||||||
// SendGrid SDK to send emails from GCE
|
// SendGrid SDK to send emails from GCE
|
||||||
api 'com.sendgrid:sendgrid-java:4.10.3'
|
api 'com.sendgrid:sendgrid-java:4.10.2'
|
||||||
|
|
||||||
// ZT-Exec for exec identity store
|
// ZT-Exec for exec identity store
|
||||||
api 'org.zeroturnaround:zt-exec:1.12'
|
api 'org.zeroturnaround:zt-exec:1.12'
|
||||||
|
|
||||||
// HTTP server
|
// HTTP server
|
||||||
api 'io.undertow:undertow-core:2.3.24.Final'
|
api 'io.undertow:undertow-core:2.3.13.Final'
|
||||||
|
|
||||||
// Command parser for AS interface
|
// Command parser for AS interface
|
||||||
api 'commons-cli:commons-cli:1.11.0'
|
api 'commons-cli:commons-cli:1.7.0'
|
||||||
|
|
||||||
testImplementation 'junit:junit:4.13.2'
|
testImplementation 'junit:junit:4.13.2'
|
||||||
testImplementation 'com.github.tomakehurst:wiremock:3.0.1'
|
testImplementation 'com.github.tomakehurst:wiremock:3.0.1'
|
||||||
testImplementation 'com.unboundid:unboundid-ldapsdk:7.0.4'
|
testImplementation 'com.unboundid:unboundid-ldapsdk:7.0.0'
|
||||||
testImplementation 'com.icegreen:greenmail:1.6.15'
|
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
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.4-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-all.zip
|
||||||
networkTimeout=10000
|
networkTimeout=10000
|
||||||
validateDistributionUrl=true
|
validateDistributionUrl=true
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
|||||||
Reference in New Issue
Block a user