Skip to content
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
ed4895a
chore: update Java version in Dockerfile and sdkmanrc to liberica
csikb Aug 26, 2025
e5883ee
chore: update Java version in Dockerfile and sdkmanrc to liberica
csikb Aug 26, 2025
420ee01
chore: update upload-artifact action to v4.6.2 in gradle.yml
csikb Aug 26, 2025
27e6762
chore: update upload-artifact action to v4.6.2 in gradle.yml
csikb Aug 26, 2025
96dc8c5
chore: update upload-artifact action to v4.6.2 in gradle.yml
csikb Aug 26, 2025
1806ace
Merge branch 'refs/heads/main' into gh-actions
csikb Aug 29, 2025
3542708
feat: add SonarQube plugin and configuration for code quality analysis
csikb Aug 29, 2025
7bf6e7e
fix: update gradle.yml to set fetch-depth for Git blame information
csikb Aug 29, 2025
58e244c
Merge branch 'main' into gh-actions
csikb Sep 16, 2025
eca713d
Update gradle.yml
csikb Sep 16, 2025
790cdb3
chore: update scorecard.yml for improved GitHub Actions integration
csikb Sep 16, 2025
c3aab6b
feat: add application configuration and initial test setup
csikb Sep 19, 2025
50095f5
Merge branch 'main' into gh-actions
csikb Sep 20, 2025
7a15f24
feat: upgrade to Java 25 and update Gradle wrapper to 9.1.0
csikb Sep 23, 2025
9875214
feat: update Kotlin dependencies to version 2.3.0
csikb Sep 23, 2025
373be78
Merge branch 'main' into jdk-25
csikb Sep 23, 2025
3ecfdd3
Merge branch 'main' into jdk-25
csikb Sep 29, 2025
4e60d29
Update .sdkmanrc
csikb Sep 29, 2025
0bd6b28
feat: update Kotlin dependencies to 2.3.0-dev-9673 and add bootstrap …
csikb Oct 4, 2025
a5acf33
Merge branch 'main' into jdk-25
csikb Oct 4, 2025
1d57787
chore: update Dockerfile to use specific image digest for build
csikb Oct 4, 2025
697da06
refactor: remove unnecessary whitespace in BssWebApplicationTest
csikb Oct 4, 2025
c0558a5
chore: update OpenJDK image version to 25.0 in config.yml
csikb Oct 4, 2025
b61e4ad
chore: update OpenJDK image version to 25.0 in config.yml
csikb Oct 4, 2025
05cb963
chore: reorganize Dockerfile and settings.gradle.kts for improved bui…
csikb Oct 4, 2025
d4031cc
Merge branch 'main' into gh-actions
csikb Oct 4, 2025
7b42750
chore: optimize Dockerfile with cache mounts for gradle builds
csikb Oct 4, 2025
3b7049d
Merge branch 'main' into gh-actions
csikb Oct 4, 2025
330e4e2
Merge branch 'main' into gh-actions
csikb Oct 4, 2025
817f6b7
Merge branch 'gh-actions' into jdk-25
csikb Oct 4, 2025
62bda84
chore: update Java version to 25 in gradle.yml and modify docker.yml …
csikb Oct 4, 2025
13df06e
chore: remove conditional platform setting from docker.yml
csikb Oct 4, 2025
858fbb5
Merge branch 'main' into jdk-25
csikb Nov 13, 2025
3e6b020
Update build.gradle.kts
csikb Nov 13, 2025
073755c
chore(deps): update Kotlin dependencies and Detekt version
csikb Nov 13, 2025
c792695
chore(deps): update Kotlin dependencies and Detekt version
csikb Nov 13, 2025
01743b5
chore(deps): update Kotlin dependencies and Detekt version
csikb Nov 13, 2025
ebfea61
chore(deps): update Kotlin dependencies and Detekt version
csikb Nov 13, 2025
7da06dd
Update libs.versions.toml
csikb Nov 21, 2025
49516b8
Update build.gradle.kts
csikb Nov 21, 2025
412a015
perf(deps): update bellsoft/liberica-runtime-container docker tag
renovate[bot] Nov 21, 2025
c2b941c
Merge remote-tracking branch 'origin/renovate/bellsoft-liberica-runti…
csikb Nov 21, 2025
3244b4a
chore(deps): update Kotlin dependencies and Detekt version
csikb Nov 21, 2025
29d3a03
chore(build): remove deprecated Detekt snapshot repository
csikb Nov 21, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .sdkmanrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Enable auto-env through the sdkman_auto_env config
# Add key=value pairs of SDKs to use below
java=21.0.8-librca
java=25-librca
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bellsoft/liberica-runtime-container:jdk-21.0.8_12-cds-musl@sha256:8b8bb6e5b0ace15ab3e037446eb79151f744461a106656a23f1986e3bf5f8496 AS build
FROM bellsoft/liberica-runtime-container:jdk-25-cds-musl AS build
WORKDIR /usr/src/app
# cache dependencies
COPY ./gradlew ./
Expand Down
10 changes: 5 additions & 5 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ dependencies {
implementation(libs.plugin.springBoot)
implementation(libs.plugin.spotless)
implementation(libs.plugin.detekt)
implementation(kotlin("allopen", "2.2.20"))
implementation(kotlin("gradle-plugin", "2.2.20"))
implementation(kotlin("allopen", "2.3.0"))
implementation(kotlin("gradle-plugin", "2.3.0"))
// required for kotlin plugin jpa
implementation(kotlin("reflect", "2.2.20"))
implementation(kotlin("stdlib-jdk8", "2.2.20"))
implementation(kotlin("noarg", "2.2.20"))
implementation(kotlin("reflect", "2.3.0"))
implementation(kotlin("stdlib-jdk8", "2.3.0"))
implementation(kotlin("noarg", "2.3.0"))
}

gradlePlugin {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class JavaConventionPlugin : Plugin<Project> {

project.extensions.configure(JavaPluginExtension::class) {
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
languageVersion.set(JavaLanguageVersion.of(25))
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class JavaLibraryConventionPlugin : Plugin<Project> {

project.extensions.configure(JavaPluginExtension::class) {
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
languageVersion.set(JavaLanguageVersion.of(25))
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class KotlinConventionPlugin : Plugin<Project> {
freeCompilerArgs = listOf("-Xjsr305=strict")
extraWarnings = true
allWarningsAsErrors = true
jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_21
jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_25
}
}
}
Expand Down
5 changes: 5 additions & 0 deletions server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ plugins {
id("hu.bsstudio.gradle.spotless-convention")
id("hu.bsstudio.gradle.kotlin-convention")
id("hu.bsstudio.gradle.spring-app-convention")
id("hu.bsstudio.gradle.test-convention")
`jacoco-report-aggregation`
`test-report-aggregation`
}
Expand All @@ -14,6 +15,10 @@ dependencies {
// todo these scopes were only supported by the spring gradle dependency management plugin
// annotationProcessor("org.springframework.boot:spring-boot-configuration-processor")
// developmentOnly("org.springframework.boot:spring-boot-devtools")
testImplementation("org.springframework.boot:spring-boot-testcontainers")
testImplementation("org.testcontainers:testcontainers")
testImplementation("org.testcontainers:postgresql")
testImplementation("org.testcontainers:junit-jupiter")
}

tasks.test {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package hu.bsstudio.bssweb

import org.junit.jupiter.api.Test
import org.springframework.boot.test.context.SpringBootTest

@SpringBootTest
class BssWebApplicationTest {

@Test
fun contextLoads() {
}

}
13 changes: 13 additions & 0 deletions server/src/test/resources/application.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
bss:
file-api:
url: http://localhost:8888
spring:
datasource:
url: jdbc:tc:postgresql:16.3-alpine3.18:///db?currentSchema=private
security:
oauth2:
resourceserver:
opaquetoken:
introspection-uri: http://localhost:8888
client-id: client-id
client-secret: client-secret
Loading