Skip to content

Commit

Permalink
Merge pull request #88 from healenium/feature/EPMHLM-350
Browse files Browse the repository at this point in the history
EPMHLM-350
  • Loading branch information
Alex-Reif authored Jan 9, 2024
2 parents bb2f7a8 + 21be413 commit 3748a19
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gradle-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
19 changes: 11 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -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 {
Expand All @@ -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'
Expand All @@ -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'
Expand All @@ -52,7 +56,6 @@ dependencies {
}

test {
useJUnitPlatform()
finalizedBy jacocoTestReport
}

Expand Down

0 comments on commit 3748a19

Please sign in to comment.