Skip to content

Commit

Permalink
Dependencies Updated (https://bit.ly/app-dependency-update) (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
bibekaryal86 authored Jan 7, 2025
1 parent e777e7f commit 9374c1b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build
FROM gradle:8.11.1-jdk21-alpine AS build
FROM gradle:8.12-jdk21-alpine AS build
WORKDIR /app
COPY app/build.gradle .
COPY app/src /app/src
Expand Down
16 changes: 8 additions & 8 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ plugins {
id 'java'
id 'application'
id 'io.freefair.lombok' version '8.11'
id 'org.springframework.boot' version '3.4.0'
id 'com.diffplug.spotless' version '6.25.0'
id 'org.springframework.boot' version '3.4.1'
id 'com.diffplug.spotless' version '7.0.0'
}

java {
Expand All @@ -32,22 +32,22 @@ bootJar {
}

dependencies {
def springVersion = "3.4.0"
def springVersion = "3.4.1"
implementation "org.springframework.boot:spring-boot-starter-actuator:$springVersion"
implementation "org.springframework.boot:spring-boot-starter-web:$springVersion"
implementation "org.springframework.boot:spring-boot-starter-security:$springVersion"
implementation "org.springframework.boot:spring-boot-starter-data-mongodb:$springVersion"
implementation "org.springframework.boot:spring-boot-starter-data-rest:$springVersion"
implementation 'io.micrometer:micrometer-tracing-bridge-otel:1.4.1'
implementation 'ch.qos.logback:logback-classic:1.5.12'
implementation 'ch.qos.logback:logback-core:1.5.12'
implementation 'ch.qos.logback:logback-classic:1.5.16'
implementation 'ch.qos.logback:logback-core:1.5.16'
implementation 'net.logstash.logback:logstash-logback-encoder:8.0'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.7.0'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.1'
testImplementation("org.springframework.boot:spring-boot-starter-test:$springVersion") {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.3'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.3'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.4'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.4'
}

configurations {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 9374c1b

Please sign in to comment.