Skip to content

Commit

Permalink
Update org.springframework.boot
Browse files Browse the repository at this point in the history
  • Loading branch information
ak-git committed Dec 21, 2023
1 parent 61ca9d1 commit 3dc4dd4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 14 deletions.
9 changes: 0 additions & 9 deletions .idea/SimpleApp.iml

This file was deleted.

2 changes: 1 addition & 1 deletion .idea/dataSources.local.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM openjdk:20
# Create a new app directory for my application files
RUN mkdir /app

ENV JAR_TO_COPY=SimpleSpringApp-2023.12.11.jar
ENV JAR_TO_COPY=SimpleSpringApp-2023.12.21.jar
# Copy the app files from host machine to image filesystem
COPY build/libs/${JAR_TO_COPY} /app

Expand Down
11 changes: 8 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ plugins {
id 'idea'
id "org.sonarqube" version '4.4.1.3373'
id 'jacoco'
id "com.github.spotbugs" version '6.0.2'
id 'org.springframework.boot' version '3.2.0'
id "com.github.spotbugs" version '6.0.4'
id 'org.springframework.boot' version '3.2.1'
id 'io.spring.dependency-management' version '1.1.4'

id 'com.github.ben-manes.versions' version '0.50.0'
Expand Down Expand Up @@ -50,7 +50,7 @@ wrapper {

allprojects {
group = 'com.ak'
version = '2023.12.11'
version = '2023.12.21'
apply plugin: 'idea'
idea {
module {
Expand Down Expand Up @@ -82,6 +82,7 @@ allprojects {
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
testImplementation('org.springframework.boot:spring-boot-starter-test')
runtimeOnly 'com.h2database:h2'
}
Expand All @@ -100,4 +101,8 @@ configurations {
configureEach {
exclude group: 'com.vaadin.external.google', module: 'android-json'
}
developmentOnly
runtimeClasspath {
extendsFrom developmentOnly
}
}

0 comments on commit 3dc4dd4

Please sign in to comment.