Skip to content
This repository has been archived by the owner on Apr 16, 2023. It is now read-only.

Commit

Permalink
πŸ› Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkL4YG committed Jan 3, 2022
1 parent 0272d13 commit bede7f4
Showing 1 changed file with 23 additions and 29 deletions.
52 changes: 23 additions & 29 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group 'de.fearnixx'
version '1.2.0'
version '1.2.1'
def projectVersion = project.version

sourceCompatibility = JavaVersion.VERSION_11
Expand Down Expand Up @@ -36,6 +36,7 @@ repositories {
maven {
url uri('https://nexus.fearnixx.de/repository/maven-public')
}
mavenCentral()
}

sourceSets {
Expand Down Expand Up @@ -69,40 +70,40 @@ sourceSets {

dependencies {
apiCompile 'de.mlessmann:confort-api:1.1.2'
apiCompile 'org.hibernate:hibernate-core:5.4.31.Final'
apiCompile 'org.slf4j:slf4j-api:1.7.30'
apiCompile 'org.hibernate:hibernate-core:5.6.3.Final'
apiCompile 'org.slf4j:slf4j-api:1.7.32'

compile sourceSets.api.output

compile 'de.mlessmann:confort:1.1.2'
compile 'io.github.classgraph:classgraph:4.8.105'
compile 'org.hibernate:hibernate-core:5.4.24.Final'
compile 'org.slf4j:slf4j-api:1.7.29'
compile 'com.zaxxer:HikariCP:4.0.3'
compile 'com.sun.mail:jakarta.mail:2.0.0'
compile 'io.github.classgraph:classgraph:4.8.138'
compile 'org.hibernate:hibernate-core:5.6.3.Final'
compile 'org.slf4j:slf4j-api:1.7.32'
compile 'com.zaxxer:HikariCP:5.0.0'
compile 'com.sun.mail:jakarta.mail:2.0.1'
compile 'com.sparkjava:spark-core:2.9.3'
compile 'com.fasterxml.jackson.core:jackson-core:2.12.1'
compile 'com.fasterxml.jackson.core:jackson-databind:2.12.1'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.12.1'
compile 'com.fasterxml.jackson.core:jackson-core:2.13.1'
compile 'com.fasterxml.jackson.core:jackson-databind:2.13.1'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.13.1'
compile 'com.jcraft:jsch:0.1.55'
compile 'org.antlr:antlr4:4.7.2'
antlr 'org.antlr:antlr4:4.7.2'
compile 'org.antlr:antlr4:4.9.3'
antlr 'org.antlr:antlr4:4.9.3'

compile 'com.github.marianobarrios:tls-channel:0.4.0'
compile 'com.github.marianobarrios:tls-channel:0.6.0'

compile 'com.github.manevolent:ts3j:1.0'
compile 'org.apache.commons:commons-lang3:3.11'
compile 'org.apache.commons:commons-lang3:3.12.0'
compile 'net.tomp2p:opus-wrapper:1.4'
compile 'com.sun.jna:jna:3.0.9'
compile 'com.github.manevolent:ffmpeg4j:534e72e6e7'

runtime 'org.antlr:antlr4-runtime:4.7.2'
runtime 'org.apache.logging.log4j:log4j-api:2.15.0'
runtime 'org.apache.logging.log4j:log4j-core:2.15.0'
runtime 'org.apache.logging.log4j:log4j-slf4j-impl:2.15.0'
runtime 'org.antlr:antlr4-runtime:4.9.3'
runtime 'org.apache.logging.log4j:log4j-api:2.17.1'
runtime 'org.apache.logging.log4j:log4j-core:2.17.1'
runtime 'org.apache.logging.log4j:log4j-slf4j-impl:2.17.1'
compile 'org.mariadb.jdbc:mariadb-java-client:2.7.3'
runtime 'com.sun.mail:smtp:1.6.5'
runtime 'com.sun.mail:dsn:2.0.0'
runtime 'com.sun.mail:smtp:2.0.1'
runtime 'com.sun.mail:dsn:2.0.1'

// BEGIN: Rewrite Jetty due to CVE-2021-28165
compile('org.eclipse.jetty:jetty-server') {
Expand All @@ -126,15 +127,8 @@ dependencies {
}
}
// END: Rewrite Jetty
// BEGIN: Rewrite JUnit due to CVE-2020-15250
runtime('junit:junit') {
version {
strictly '4.13.1'
}
}
// END: Rewrite JUnit

testCompile 'junit:junit:4.13.1'
testCompile 'junit:junit:4.13.2'
testCompile 'org.hamcrest:hamcrest:2.2'
}

Expand Down

0 comments on commit bede7f4

Please sign in to comment.