Skip to content

Commit

Permalink
Update dependencies cuba-platform/cuba#3307
Browse files Browse the repository at this point in the history
  • Loading branch information
Gavrilov-Ivan authored Jan 14, 2025
1 parent 07fb639 commit fe70949
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
18 changes: 16 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ dependencies {
appComponent("com.haulmont.cuba:cuba-global:$cubaVersion")
}

def hsql = 'org.hsqldb:hsqldb:2.4.1'
def hsql = 'org.hsqldb:hsqldb:2.5.2'

configure([globalModule, coreModule, webModule]) {
apply(plugin: 'java')
Expand All @@ -70,7 +70,21 @@ configure([globalModule, coreModule, webModule]) {
apply(plugin: 'addon-gradle-plugin')

dependencies {
compile('software.amazon.awssdk:s3:2.7.21')
compile('software.amazon.awssdk:s3:2.7.36')

def nettyVersion = '4.1.116.Final'
compile("io.netty:netty-codec-http:$nettyVersion")
compile("io.netty:netty-codec-http2:$nettyVersion")
compile("io.netty:netty-codec:$nettyVersion")
compile("io.netty:netty-transport:$nettyVersion")
compile("io.netty:netty-common:$nettyVersion")
compile("io.netty:netty-buffer:$nettyVersion")
compile("io.netty:netty-handler:$nettyVersion")
compile("io.netty:netty-transport-native-epoll:$nettyVersion")

compile('com.fasterxml.jackson.core:jackson-annotations:2.18.2')
compile('com.fasterxml.jackson.core:jackson-databind:2.18.2')

testCompile('junit:junit:4.12')
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit fe70949

Please sign in to comment.