Skip to content

Commit

Permalink
2.9.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ccmjga committed Jan 3, 2025
1 parent d67ed46 commit 50c4a67
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 17 deletions.
18 changes: 9 additions & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import org.springframework.boot.gradle.tasks.bundling.BootJar

val jooqVersion by extra("3.19.13")
val testcontainersVersion by extra("1.20.1")
val flywayVersion by extra("11.0.1")
val jooqVersion by extra("3.19.16")
val testcontainersVersion by extra("1.20.4")
val flywayVersion by extra("11.1.0")

plugins {
java
jacoco
id("org.springframework.boot") version "3.3.5"
id("io.spring.dependency-management") version "1.1.6"
id("org.springdoc.openapi-gradle-plugin") version "1.8.0"
id("org.springframework.boot") version "3.3.7"
id("io.spring.dependency-management") version "1.1.7"
id("org.springdoc.openapi-gradle-plugin") version "1.9.0"
id("pmd")
id("org.jooq.jooq-codegen-gradle") version "3.19.13"
id("org.jooq.jooq-codegen-gradle") version "3.19.16"
id("com.diffplug.spotless") version "6.25.0"
}

Expand Down Expand Up @@ -101,7 +101,7 @@ jacoco {

pmd {
isConsoleOutput = true
toolVersion = "7.8.0"
toolVersion = "7.9.0"
rulesMinimumPriority.set(5)
ruleSetFiles = files("pmd-rules.xml")
}
Expand All @@ -117,7 +117,7 @@ spotless {
}

java {
googleJavaFormat("1.25.1").reflowLongStrings()
googleJavaFormat("1.25.2").reflowLongStrings()
formatAnnotations()
}

Expand Down
7 changes: 1 addition & 6 deletions compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
database:
image: 'postgres:16.4'
image: 'postgres:17.2'
container_name: database
hostname: database
environment:
Expand All @@ -11,12 +11,7 @@ services:
- ${DATABASE_EXPOSE_PORT}:5432
volumes:
- ${DATABASE_STORE}:/var/lib/postgresql/data
# - ${DATABASE_SSL}:/etc/ssl/certs
restart: always
# command: >
# -c ssl=on
# -c ssl_cert_file=/etc/ssl/certs/localhost.crt
# -c ssl_key_file=/etc/ssl/certs/localhost.key
web:
build:
context: .
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.10.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ spring:
flyway:
enabled: true
locations: classpath:db/migration
default-schema: public
springdoc:
swagger-ui:
path: /swagger-ui.html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
public class AbstractDataAccessLayerTest {

public static PostgreSQLContainer<?> postgres =
new PostgreSQLContainer<>("postgres:16.4-alpine").withDatabaseName("mjga");
new PostgreSQLContainer<>("postgres:17.2-alpine").withDatabaseName("mjga");

@DynamicPropertySource
static void postgresProperties(DynamicPropertyRegistry registry) {
Expand Down

0 comments on commit 50c4a67

Please sign in to comment.