Skip to content

Commit

Permalink
Merge pull request #245 from Ragin-LundF/feature/update-2.16.0
Browse files Browse the repository at this point in the history
Feature/update 2.16.0
  • Loading branch information
Ragin-LundF authored Aug 23, 2024
2 parents d63bd2a + 748d404 commit 9d8af10
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 36 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Release 2.16.0
- Spring Boot to 3.3.3
- liquibase-core to 4.29.1

# Release 2.15.0
- Fixed issues with BOM's. It was not possible to resolve the transitive dependencies.

Expand Down
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ plugins {
id "maven-publish"
id "org.sonarqube" version "5.1.0.4882"
id "io.gitlab.arturbosch.detekt" version "1.23.6"
id "org.liquibase.gradle" version "2.2.2"
id "org.springframework.boot" version "3.3.2"
id "org.springframework.boot" version "3.3.3"
id "io.spring.dependency-management" version "1.1.6"
id "org.jetbrains.kotlin.jvm" version "$kotlin_version"
id "org.jetbrains.kotlinx.kover" version "0.8.3"
Expand Down
45 changes: 14 additions & 31 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,43 +4,25 @@ configurations.configureEach {
exclude group: "ch.qos.logback", module: "logback-core"
}

dependencyManagement {
dependencies {
dependency "org.slf4j:slf4j-simple:2.0.13"
dependency "io.github.oshai:kotlin-logging-jvm:7.0.0"
dependency "org.apache.httpcomponents.client5:httpclient5:5.3.1"
dependency "net.javacrumbs.json-unit:json-unit:3.4.1"
dependency "jakarta.validation:jakarta.validation-api:3.1.0"
dependency "org.apache.commons:commons-text:1.12.0"
dependency "commons-io:commons-io:2.16.1"
dependency "org.apache.commons:commons-lang3:3.15.0"
dependency "org.yaml:snakeyaml:2.2"
dependency "org.liquibase:liquibase-core:4.29.0"
dependency "org.postgresql:postgresql:42.7.3"
dependency "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
dependency "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
}
}

dependencies {
implementation "io.github.oshai:kotlin-logging-jvm"
implementation "io.github.oshai:kotlin-logging-jvm:7.0.0"

api "org.apache.httpcomponents.client5:httpclient5"
api "org.apache.httpcomponents.client5:httpclient5:5.3.1"

api "net.javacrumbs.json-unit:json-unit"
api "net.javacrumbs.json-unit:json-unit:3.4.1"

api "io.cucumber:cucumber-java:$version_cucumber"
api "io.cucumber:cucumber-spring:$version_cucumber"
api "io.cucumber:cucumber-junit:$version_cucumber"

api "jakarta.validation:jakarta.validation-api"
api "jakarta.validation:jakarta.validation-api:3.1.0"

api "org.apache.commons:commons-text"
implementation "commons-io:commons-io"
implementation "org.apache.commons:commons-lang3"
api "org.apache.commons:commons-text:1.12.0"
implementation "commons-io:commons-io:2.16.1"
implementation "org.apache.commons:commons-lang3:3.16.0"

implementation "org.yaml:snakeyaml"
implementation "org.liquibase:liquibase-core"
implementation "org.yaml:snakeyaml:2.2"
implementation "org.liquibase:liquibase-core:4.29.1"
implementation "org.springframework.boot:spring-boot-starter-web"
implementation "org.springframework.boot:spring-boot-starter-test"
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
Expand All @@ -52,12 +34,13 @@ dependencies {
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:$version_jackson"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$version_jackson"

implementation "org.jetbrains.kotlin:kotlin-reflect"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"

testImplementation "org.postgresql:postgresql"
testImplementation "org.slf4j:slf4j-simple"
testImplementation "org.postgresql:postgresql:42.7.4"
testImplementation "org.slf4j:slf4j-simple:2.0.16"
testImplementation "org.testcontainers:testcontainers:$version_testcontainers"
testImplementation "org.testcontainers:postgresql:$version_testcontainers"
testImplementation "org.testcontainers:jdbc:$version_testcontainers"
testImplementation "org.testcontainers:junit-jupiter:$version_testcontainers"
}
5 changes: 2 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=io.github.ragin-lundf
version=2.15.0
version=2.16.0
jdk_version=17
kotlin_version=1.9.23

Expand All @@ -8,6 +8,5 @@ systemProp.sonar.organization=ragin-lundf-github
systemProp.sonar.projectKey=Ragin-LundF_bbd-cucumber-gherkin-lib

version_cucumber=7.18.1
version_junit=5.10.1
version_testcontainers=1.20.0
version_testcontainers=1.20.1
version_jackson=2.17.2

0 comments on commit 9d8af10

Please sign in to comment.