Skip to content

Commit d7644a7

Browse files
committed
Bumped dependencies and fixed JUL logger
1 parent a6680f7 commit d7644a7

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ dependencies {
9090

9191
val log4jVersion: String by project
9292
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion")
93+
runtimeOnly("org.apache.logging.log4j:log4j-api:$log4jVersion")
94+
runtimeOnly("org.apache.logging.log4j:log4j-jul:$log4jVersion")
9395

9496
val radarSchemasVersion: String by project
9597
testImplementation("org.radarbase:radar-schemas-commons:$radarSchemasVersion")
@@ -114,6 +116,10 @@ dependencies {
114116

115117
application {
116118
mainClass.set("org.radarbase.output.Application")
119+
applicationDefaultJvmArgs = listOf(
120+
"-Djava.security.egd=file:/dev/./urandom",
121+
"-Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager",
122+
)
117123
}
118124

119125
distributions {

gradle.properties

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
kotlin.code.style=official
22

3-
kotlinVersion=1.6.20
4-
dokkaVersion=1.6.10
5-
dockerComposeVersion=0.15.2
3+
kotlinVersion=1.6.21
4+
dokkaVersion=1.6.21
5+
dockerComposeVersion=0.16.4
66
dependencyUpdateVersion=0.42.0
77
nexusPublishVersion=1.1.0
88
jsoupVersion=1.14.3
@@ -12,16 +12,16 @@ snappyVersion=1.1.8.4
1212
jacksonVersion=2.13.2.20220328
1313
jCommanderVersion=1.82
1414
almworksVersion=1.1.2
15-
minioVersion=8.3.8
15+
minioVersion=8.4.0
1616
guavaVersion=31.1-jre
1717
opencsvVersion=5.6
1818
okhttpVersion=4.9.3
19-
jedisVersion=4.2.1
19+
jedisVersion=4.2.3
2020
slf4jVersion=1.7.36
2121
log4jVersion=2.17.2
22-
azureStorageVersion=12.15.0
23-
nettyVersion=4.1.75.Final
22+
azureStorageVersion=12.16.0
23+
nettyVersion=4.1.77.Final
2424

2525
junitVersion=5.8.2
2626
mockitoKotlinVersion=4.0.0
27-
radarSchemasVersion=0.7.8
27+
radarSchemasVersion=0.7.9

0 commit comments

Comments
 (0)