Skip to content

Commit

Permalink
Update http4k (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
rogervinas authored Nov 10, 2023
1 parent f1db35e commit 8bdc486
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/http4k.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
java-version: '21'
distribution: 'temurin'
- name: Build with Gradle
uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
![Ktor](https://img.shields.io/badge/Ktor-2.3.6-blue?labelColor=black)

[![Http4k](https://github.com/rogervinas/top-5-server-side-kotlin-frameworks-2022/actions/workflows/http4k.yml/badge.svg)](https://github.com/rogervinas/top-5-server-side-kotlin-frameworks-2022/actions/workflows/http4k.yml)
![Java](https://img.shields.io/badge/Java-11-blue?labelColor=black)
![Kotlin](https://img.shields.io/badge/Kotlin-1.8.20-blue?labelColor=black)
![Http4k](https://img.shields.io/badge/Http4k-4.41.3.0-blue?labelColor=black)
![Java](https://img.shields.io/badge/Java-21-blue?labelColor=black)
![Kotlin](https://img.shields.io/badge/Kotlin-1.9.20-blue?labelColor=black)
![Http4k](https://img.shields.io/badge/Http4k-5.9.0.0-blue?labelColor=black)

# Top 5 Server-Side Frameworks for Kotlin in 2022

Expand Down
8 changes: 4 additions & 4 deletions http4k-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ repositories {

apply plugin: 'kotlin'

compileKotlin.kotlinOptions.jvmTarget = "11"
compileTestKotlin.kotlinOptions.jvmTarget = "11"
compileKotlin.kotlinOptions.jvmTarget = "21"
compileTestKotlin.kotlinOptions.jvmTarget = "21"
compileTestKotlin.kotlinOptions.freeCompilerArgs += "-Xjvm-default=all"

sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21

test {
useJUnitPlatform()
Expand Down
6 changes: 3 additions & 3 deletions http4k-app/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
junitVersion=5.9.2
http4kVersion=4.41.3.0
kotlinVersion=1.8.20
junitVersion=5.10.0
http4kVersion=5.9.0.0
kotlinVersion=1.9.20

0 comments on commit 8bdc486

Please sign in to comment.