Skip to content

Commit f23937d

Browse files
committed
build: some fixes
1 parent 90b5698 commit f23937d

File tree

5 files changed

+9
-3
lines changed

5 files changed

+9
-3
lines changed

gradle/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,11 @@ allprojects {
306306
dependsOn(classes)
307307
outputDirectory = buildDir.resolve("doc").toString()
308308
outputFormat = "javadoc"
309+
configuration {
310+
reportUndocumented = false
311+
moduleName = "Software-Challenge ${project.name} $version"
312+
jdkVersion = 8
313+
}
309314
}
310315
val docJar by creating(Jar::class) {
311316
group = "build"
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
33
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-all.zip
4+
# 7.6.6
5+
# 8.14.3
46
zipStoreBase=GRADLE_USER_HOME
57
zipStorePath=wrapper/dists

plugin2025/src/test/kotlin/sc/plugin2025/MoveTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ class MoveTest: WordSpec({
208208
state.getSensibleMoves() shouldBe listOf(FallBack, ExchangeCarrots(10))
209209
}
210210

211-
"produce concicse XML" {
211+
"produce concise XML" {
212212
ExchangeCarrots(-10) shouldSerializeTo "<exchangecarrots amount=\"-10\"/>"
213213
}
214214
}

sdk/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ configurations.archives.get().artifacts.removeIf { it.name == "testConfig" }
2626

2727
dependencies {
2828
api(kotlin("stdlib"))
29-
api("com.thoughtworks.xstream", "xstream", "1.4.19") // New security config for 1.4.20
29+
api("com.thoughtworks.xstream", "xstream", "1.4.17") // New security config, then 1.4.20
3030
api("jargs", "jargs", "1.0")
3131
api("org.slf4j", "slf4j-api", "2.0.9")
3232

sdk/src/test/config/KotestConfig.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import io.kotest.core.spec.IsolationMode
55
import io.kotest.core.test.TestCaseOrder
66
import kotlin.time.Duration.Companion.seconds
77

8-
@OptIn(ExperimentalTime::class)
98
object KotestConfig: AbstractProjectConfig() {
109
override val parallelism = Runtime.getRuntime().availableProcessors()
1110

0 commit comments

Comments
 (0)