@@ -37,14 +37,27 @@ dependencies {
37
37
implementation " org.springframework.boot:spring-boot-starter-thymeleaf"
38
38
implementation ' org.springframework.boot:spring-boot-starter-actuator'
39
39
40
+ // Avoid outdated version of netty to prevent security issues
41
+ implementation(" io.netty:netty-buffer" ) { version { strictly netty_version } }
42
+ implementation(" io.netty:netty-codec" ) { version { strictly netty_version } }
43
+ implementation(" io.netty:netty-codec-dns" ) { version { strictly netty_version } }
44
+ implementation(" io.netty:netty-codec-http" ) { version { strictly netty_version } }
45
+ implementation(" io.netty:netty-codec-http2" ) { version { strictly netty_version } }
46
+ implementation(" io.netty:netty-codec-socks" ) { version { strictly netty_version } }
47
+ implementation(" io.netty:netty-common" ) { version { strictly netty_version } }
48
+ implementation(" io.netty:netty-resolver" ) { version { strictly netty_version } }
49
+ implementation(" io.netty:netty-resolver-dns" ) { version { strictly netty_version } }
50
+ implementation(" io.netty:netty-transport" ) { version { strictly netty_version } }
51
+ implementation(" io.netty:netty-transport-native-epoll" ) { version { strictly netty_version } }
52
+ implementation(" io.netty:netty-handler" ) { version { strictly netty_version } }
53
+ implementation(" io.netty:netty-handler-proxy" ) { version { strictly netty_version } }
54
+
40
55
// Avoid outdated version to prevent security issues
41
56
implementation(" net.minidev:json-smart" ) { version { strictly " 2.5.2" } }
42
57
43
58
implementation " org.liquibase:liquibase-core:4.31.1"
44
59
implementation " org.postgresql:postgresql:42.7.5"
45
60
46
- implementation " org.hibernate.orm:hibernate-core:6.6.9.Final"
47
-
48
61
implementation " commons-io:commons-io:2.18.0"
49
62
implementation " com.github.vladimir-bukhtoyarov:bucket4j-core:8.0.1"
50
63
implementation " org.mnode.ical4j:ical4j:4.1.0"
0 commit comments