Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

Commit

Permalink
upgrade versions (including kotlin)
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddenton committed Nov 1, 2023
1 parent 43cbeac commit b21ddaf
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
This list is not intended to be all-encompassing - it will document major and breaking API
changes with their rationale when appropriate. Given version `A.B.C.D`, breaking changes are to be expected in version number increments where changes in the `A` or `B` sections:

### v5.4.0.0
- **http4k-connect-*** - Upgrade dependencies, including Kotlin to 1.9.20.

### v5.3.0.0
- **http4k-connect-*** - Upgrade dependencies.
- **http4k-connect-*** - [Breaking - dev] http4k-connect is now built with Java 21.
Expand Down
8 changes: 6 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
import com.google.devtools.ksp.gradle.KspTask
import groovy.namespace.QName
import groovy.util.Node
import jdk.internal.vm.vector.VectorSupport.test
import jdk.tools.jlink.resources.plugins
import org.gradle.api.JavaVersion.VERSION_1_8
import org.jetbrains.kotlin.gradle.plugin.KotlinSourceSet
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import java.time.Duration
import javax.xml.namespace.QName
import kotlin.math.sign

plugins {
kotlin("jvm")
Expand Down Expand Up @@ -284,7 +288,7 @@ tasks.register<JacocoReport>("jacocoRootReport") {
html.required.set(true)
xml.required.set(true)
csv.required.set(false)
xml.outputLocation.set(file("${buildDir}/reports/jacoco/test/jacocoRootReport.xml"))
xml.outputLocation.set(file("${layout.buildDirectory}/reports/jacoco/test/jacocoRootReport.xml"))
}
}

Expand Down Expand Up @@ -382,7 +386,7 @@ fun hasCodeCoverage(project: Project) = project.name != "http4k-connect-bom" &&

coveralls {
sourceDirs = subprojects.map { it.sourceSets.getByName("main").allSource.srcDirs }.flatten().map { it.absolutePath }
jacocoReportPath = file("${buildDir}/reports/jacoco/test/jacocoRootReport.xml")
jacocoReportPath = file("${layout.buildDirectory}/reports/jacoco/test/jacocoRootReport.xml")
}

tasks.named<JacocoReport>("jacocoTestReport") {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[versions]

kotlin = "1.9.10"
kotlin = "1.9.20"

[libraries]

Expand Down
10 changes: 5 additions & 5 deletions versions.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@

plugin.com.github.kt3k.coveralls=2.12.2

plugin.com.google.devtools.ksp=1.9.10-1.0.13
plugin.com.google.devtools.ksp=1.9.20-1.0.13

plugin.de.fayard.buildSrcLibs=0.60.3

plugin.com.github.davidmc24.gradle.plugin.avro=1.9.1

version.com.google.devtools.ksp..symbol-processing-api=1.9.10-1.0.13
version.com.google.devtools.ksp..symbol-processing-api=1.9.20-1.0.13

version.com.amazonaws..aws-lambda-java-events=3.11.3

Expand All @@ -27,7 +27,7 @@ version.com.h2database..h2=2.2.224

version.com.zaxxer..HikariCP=5.0.1

version.dev.forkhandles..forkhandles-bom=2.8.0.0
version.dev.forkhandles..forkhandles-bom=2.10.0.0

version.http4k=5.9.0.0

Expand All @@ -47,7 +47,7 @@ version.junit=5.10.0

version.junit.jupiter=5.10.0

version.kotlin=1.9.10
version.kotlin=1.9.20

version.org.bitbucket.b_c..jose4j=0.9.3

Expand All @@ -69,6 +69,6 @@ version.se.ansman.kotshi..api=2.13.1

version.se.ansman.kotshi..compiler=2.13.1

version.software.amazon.awssdk..bom=2.21.9
version.software.amazon.awssdk..bom=2.21.12

version.com.nimbusds..nimbus-jose-jwt=9.37

0 comments on commit b21ddaf

Please sign in to comment.