diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index 516f457..7bd92af 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -5,10 +5,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Set up JDK 11 + - name: Set up JDK 17 uses: actions/setup-java@v2 with: - java-version: 11 + java-version: 17 distribution: 'adopt' - name: Build with Gradle run: ./gradlew build \ No newline at end of file diff --git a/build.gradle b/build.gradle index b988abf..bf058e6 100644 --- a/build.gradle +++ b/build.gradle @@ -1,13 +1,13 @@ plugins { - id 'org.springframework.boot' version '3.1.5' - id 'io.spring.dependency-management' version "1.1.3" + id 'org.springframework.boot' version '3.2.1' + id 'io.spring.dependency-management' version "1.1.4" id 'java' id 'maven-publish' id 'jacoco' } group 'com.epam.healenium' -version '3.4.2' +version '3.4.3' repositories { @@ -23,7 +23,7 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-actuator' implementation 'org.springframework.boot:spring-boot-starter-webflux' implementation 'org.springframework.boot:spring-boot-starter-logging' - implementation 'org.liquibase:liquibase-core:4.23.0' + implementation 'org.liquibase:liquibase-core:4.25.1' implementation 'org.postgresql:postgresql:42.6.0' implementation 'com.zaxxer:HikariCP:3.3.1' implementation 'com.vladmihalcea:hibernate-types-52:2.7.0' @@ -35,11 +35,15 @@ dependencies { implementation 'com.epam.healenium:tree-comparing:0.4.12' implementation 'org.projectlombok:lombok:1.18.22' implementation 'org.mapstruct:mapstruct:1.3.1.Final' + implementation group: 'io.netty', name: 'netty-handler', version: '4.1.104.Final' + implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.4.14' + implementation group: 'ch.qos.logback', name: 'logback-core', version: '1.4.14' + implementation 'com.fasterxml.jackson.core:jackson-databind:2.16.0' - implementation 'org.testcontainers:junit-jupiter:1.19.1' + implementation 'org.testcontainers:junit-jupiter:1.19.3' implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.24.0' - testImplementation 'org.testcontainers:postgresql:1.18.3' - testImplementation('org.testcontainers:testcontainers:1.18.3') + testImplementation 'org.testcontainers:postgresql:1.19.3' + testImplementation('org.testcontainers:testcontainers:1.19.3') testImplementation 'io.rest-assured:rest-assured:5.3.2' testImplementation 'org.springframework.boot:spring-boot-starter-test' @@ -52,7 +56,6 @@ dependencies { } test { - useJUnitPlatform() finalizedBy jacocoTestReport }