Skip to content

Commit

Permalink
feat: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
FerroEduardo committed Dec 18, 2023
1 parent 004ddf8 commit fa68906
Show file tree
Hide file tree
Showing 2 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
Expand Up @@ -14,7 +14,7 @@ RUN cd /tmp && \
FROM docker.io/eclipse-temurin:17-jre-alpine

WORKDIR /app
COPY --from=builder /app .
COPY --from=builder /app .a

ENV JAVA_ARGS="-Xmx300M"
ENV LOG_DIRECTORY="/app/logs"
Expand Down
18 changes: 9 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'application'
id 'org.springframework.boot' version '2.7.0'
id 'org.springframework.boot' version '2.7.18'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}

Expand All @@ -22,16 +22,16 @@ springBoot {
}

dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
implementation ('org.springframework.boot:spring-boot-starter-data-jpa:2.7.0') {
// testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
// testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
implementation('org.springframework.boot:spring-boot-starter-data-jpa:2.7.18') {
exclude module: 'spring-boot-starter-logging'
}
implementation 'org.springframework.boot:spring-boot-starter-log4j2:2.7.0'
implementation 'org.springframework.boot:spring-boot-starter-log4j2:2.7.18'
implementation 'javax.xml.bind:jaxb-api:2.3.1'

implementation 'com.h2database:h2:2.1.212'
implementation 'org.postgresql:postgresql:42.3.6'
implementation 'com.h2database:h2:2.2.224'
implementation 'org.postgresql:postgresql:42.7.1'

implementation("net.dv8tion:JDA:5.0.0-beta.16") {
exclude module: 'opus-java'
Expand Down Expand Up @@ -65,5 +65,5 @@ test {
useJUnitPlatform()
}

sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21

0 comments on commit fa68906

Please sign in to comment.