Skip to content

Commit

Permalink
Spring Boot 3.3.3 to 3.4.0
Browse files Browse the repository at this point in the history
Gradle 8.10.1 to 8.11.1
  • Loading branch information
jkazama committed Nov 22, 2024
1 parent cb55088 commit 5048366
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.3.3'
id 'org.springframework.boot' version '3.4.0'
id 'io.spring.dependency-management' version '1.1.6'
}

version = "3.3.3"
version = "3.4.0"

javadoc {
options.addBooleanOption('Xdoclint:none', true)
Expand Down Expand Up @@ -38,5 +38,5 @@ dependencies {
}

wrapper {
gradleVersion = "8.10.1"
gradleVersion = "8.11.1"
}
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
org.gradle.jvmargs=-Dfile.encoding=UTF-8
org.gradle.configuration-cache.parallel=true
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.10.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 2 additions & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ spring:
show-sql: ${SHOW_SQL:false}
hibernate.ddl-auto: ${DDL_AUTO:none}

logging.config: ${LOGGING_CONFIG_XML:classpath:logback-spring.xml}

server:
port: ${SERVER_PORT:8080}

Expand All @@ -29,7 +31,6 @@ spring:
config.activate.on-profile: "dev"

spring.jpa:
show-sql: true
hibernate.ddl-auto: create-drop

management.endpoints.web.exposure.include: "*"
Expand Down
10 changes: 10 additions & 0 deletions src/main/resources/logback-spring.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE logback>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml"/>
<logger name="sample" level="DEBUG"/>
<logger name="Audit" level="INFO"/>
<logger name="org.hibernate" level="WARN"/>
<logger name="org.hibernate.SQL" level="DEBUG"/>
<logger name="org.springframework.boot.diagnostics.LoggingFailureAnalysisReporter" level="DEBUG"/>
</configuration>

0 comments on commit 5048366

Please sign in to comment.