Skip to content
This repository was archived by the owner on Dec 20, 2025. It is now read-only.

Commit 1aa9669

Browse files
authored
chore(upgrades): Bump versions to match other services (#2075)
Updates dependencies such as: * Kotlin to 1.5.32 * Kork to 7.220.0 * MySQL test version to 8.0.36 * Gradle to 7.6.1
1 parent b9bfe7e commit 1aa9669

File tree

25 files changed

+217
-175
lines changed

25 files changed

+217
-175
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ allprojects {
3939
annotationProcessor(platform("io.spinnaker.kork:kork-bom:${korkVersion}"))
4040
annotationProcessor("org.springframework.boot:spring-boot-configuration-processor")
4141

42-
implementation(platform("io.spinnaker.kork:kork-bom:${korkVersion}"))
42+
implementation(enforcedPlatform("io.spinnaker.kork:kork-bom:${korkVersion}"))
4343
implementation("org.slf4j:slf4j-api")
4444

4545
testImplementation("org.junit.platform:junit-platform-runner")

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
kotlinVersion=1.4.32
1+
kotlinVersion=1.5.32
22
fiatVersion=1.32.0
3-
korkVersion=7.137.0
3+
korkVersion=7.220.0
44
kapt.use.worker.api=true
55
liquibaseTaskPrefix=liquibase
66
org.gradle.parallel=true

gradle/kotlin.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: "kotlin-allopen"
44

55
compileKotlin {
66
kotlinOptions {
7-
languageVersion = "1.4"
7+
languageVersion = "1.5"
88
jvmTarget = "11"
99
// see https://kotlinlang.org/docs/java-to-kotlin-interop.html#compatibility-mode-for-default-methods
1010
freeCompilerArgs += "-Xjvm-default=enable"
@@ -13,7 +13,7 @@ compileKotlin {
1313

1414
compileTestKotlin {
1515
kotlinOptions {
16-
languageVersion = "1.4"
16+
languageVersion = "1.5"
1717
jvmTarget = "11"
1818
freeCompilerArgs += "-Xjvm-default=enable"
1919
}

gradle/test.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ dependencies {
99
}
1010

1111
test {
12+
minHeapSize = "512m"
13+
maxHeapSize = "1g"
14+
1215
useJUnitPlatform {
1316
includeEngines("junit-jupiter")
1417
}

gradle/wrapper/gradle-wrapper.jar

2.32 KB
Binary file not shown.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip
4+
networkTimeout=10000
45
zipStoreBase=GRADLE_USER_HOME
56
zipStorePath=wrapper/dists

gradlew

Lines changed: 164 additions & 105 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)