Skip to content

Commit

Permalink
Update springboot-app (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
rogervinas authored Nov 10, 2023
1 parent 29714cb commit dcd1c6c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/springboot.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
5 changes: 5 additions & 0 deletions springboot-app/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
[![SpringBoot](https://github.com/rogervinas/top-5-server-side-kotlin-frameworks-2022/actions/workflows/springboot.yml/badge.svg)](https://github.com/rogervinas/top-5-server-side-kotlin-frameworks-2022/actions/workflows/springboot.yml)
![Java](https://img.shields.io/badge/Java-21-blue?labelColor=black)
![Kotlin](https://img.shields.io/badge/Kotlin-1.9.20-blue?labelColor=black)
![WireMock](https://img.shields.io/badge/SpringBoot-3.1.5-blue?labelColor=black)

# Spring Boot

We can create a project using [Spring Initialzr](https://start.spring.io/#!type=gradle-project-kotlin&language=kotlin&platformVersion=3.0.1&packaging=jar&jvmVersion=17&groupId=org.rogervinas&artifactId=springboot-app&name=springboot-app&description=Demo%20project%20for%20Spring%20Boot&packageName=org.rogervinas.springboot-app&dependencies=webflux,cloud-starter-vault-config,jdbc) and download it locally.
Expand Down
8 changes: 4 additions & 4 deletions springboot-app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
plugins {
id("org.springframework.boot") version "3.0.1"
id("org.springframework.boot") version "3.1.5"
id("io.spring.dependency-management") version "1.1.3"
kotlin("jvm") version "1.9.20"
kotlin("plugin.spring") version "1.9.20"
}

group = "org.rogervinas"
version = "0.0.1-SNAPSHOT"
java.sourceCompatibility = JavaVersion.VERSION_17
java.sourceCompatibility = JavaVersion.VERSION_21

repositories {
mavenCentral()
}

extra["springCloudVersion"] = "2022.0.0"
extra["springCloudVersion"] = "2022.0.4"

dependencies {
implementation("org.springframework.boot:spring-boot-starter-webflux")
Expand Down Expand Up @@ -45,7 +45,7 @@ dependencyManagement {
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions {
freeCompilerArgs = listOf("-Xjsr305=strict")
jvmTarget = "17"
jvmTarget = "21"
}
}

Expand Down

0 comments on commit dcd1c6c

Please sign in to comment.