@@ -34,24 +34,19 @@ tasks.withType<ShadowJar> {
34
34
35
35
// Dependencies --------------------------------------------------------------------------------------------------------
36
36
37
- val ktorVersion = " 2.3.6 "
37
+ val ktorVersion = " 2.3.5 "
38
38
39
39
dependencies {
40
- implementation(" ch.qos.logback:logback-classic:1.4.13 " )
40
+ implementation(" ch.qos.logback:logback-classic:1.4.11 " )
41
41
implementation(" io.ktor:ktor-serialization-kotlinx-json:$ktorVersion " )
42
42
implementation(" io.ktor:ktor-server:$ktorVersion " )
43
43
implementation(" io.ktor:ktor-server-netty:$ktorVersion " )
44
44
implementation(" com.larsreimann:modeling-core:3.1.1" )
45
- implementation(" com.larsreimann.safe-ds:safe-ds-core:1.0.0" )
46
-
47
- // Required, otherwise serializeToFormattedString does not compile
48
- implementation(" org.eclipse.xtext:org.eclipse.xtext:2.31.0" )
49
45
50
46
testImplementation(kotlin(" test" ))
51
47
testImplementation(" io.kotest:kotest-assertions-core-jvm:5.6.2" )
52
48
testImplementation(" io.ktor:ktor-server-test-host:$ktorVersion " )
53
- testImplementation(" io.mockk:mockk:1.13.8" )
54
- testImplementation(" org.junit.jupiter:junit-jupiter-params:5.10.1" )
49
+ testImplementation(" org.junit.jupiter:junit-jupiter-params:5.10.0" )
55
50
}
56
51
57
52
// Tasks ---------------------------------------------------------------------------------------------------------------
@@ -79,11 +74,12 @@ tasks {
79
74
startScripts {
80
75
doLast {
81
76
val winScriptFile = file(windowsScript)
82
- val winFileText = winScriptFile.readText()
83
- .replace(
84
- Regex (" set CLASSPATH=.*" ),
85
- " rem original CLASSPATH declaration replaced by:\n set CLASSPATH=%APP_HOME%\\\\ lib\\\\ *" ,
86
- )
77
+ val winFileText =
78
+ winScriptFile.readText()
79
+ .replace(
80
+ Regex (" set CLASSPATH=.*" ),
81
+ " rem original CLASSPATH declaration replaced by:\n set CLASSPATH=%APP_HOME%\\\\ lib\\\\ *" ,
82
+ )
87
83
88
84
winScriptFile.writeText(winFileText)
89
85
}
0 commit comments