Skip to content
This repository has been archived by the owner on Sep 22, 2022. It is now read-only.

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Adven27 committed Oct 27, 2021
1 parent cb3e9c5 commit 550f0db
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ Idea is to be agnostic to tools used for specific external system emulation (e.g
1. Add needed dependencies:

```groovy
testImplementation "io.github.adven27:env-db-postgresql:4.0.5"
testImplementation "io.github.adven27:env-db-mssql:4.0.5"
testImplementation "io.github.adven27:env-db-mysql:4.0.5"
testImplementation "io.github.adven27:env-db-oracle:4.0.5"
testImplementation "io.github.adven27:env-db-oracle-temp:4.0.5"
testImplementation "io.github.adven27:env-db-db2:4.0.5"
testImplementation "io.github.adven27:env-jar-application:4.0.5"
testImplementation "io.github.adven27:env-mq-rabbit:4.0.5"
testImplementation "io.github.adven27:env-mq-ibmmq:4.0.5"
testImplementation "io.github.adven27:env-mq-redis:4.0.5"
testImplementation "io.github.adven27:env-grpc-mock:4.0.5"
testImplementation "io.github.adven27:env-wiremock:4.0.5"
testImplementation "io.github.adven27:env-db-postgresql:4.0.6"
testImplementation "io.github.adven27:env-db-mssql:4.0.6"
testImplementation "io.github.adven27:env-db-mysql:4.0.6"
testImplementation "io.github.adven27:env-db-oracle:4.0.6"
testImplementation "io.github.adven27:env-db-oracle-temp:4.0.6"
testImplementation "io.github.adven27:env-db-db2:4.0.6"
testImplementation "io.github.adven27:env-jar-application:4.0.6"
testImplementation "io.github.adven27:env-mq-rabbit:4.0.6"
testImplementation "io.github.adven27:env-mq-ibmmq:4.0.6"
testImplementation "io.github.adven27:env-mq-redis:4.0.6"
testImplementation "io.github.adven27:env-grpc-mock:4.0.6"
testImplementation "io.github.adven27:env-wiremock:4.0.6"
```

2. Set up systems:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ buildscript {
ext.testContainers_version = '1.16.0'
ext.wiremock_version = '2.30.1'
ext.klogging_version = '2.0.11'
ext.libVersion = "4.0.5"
ext.libVersion = "4.0.6"
ext.libGroup = 'io.github.adven27'
repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion env-db-oracle-temp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ apply from: "$rootDir/gradle/publish.gradle"
dependencies {
api project(':env-core')
runtimeOnly("com.oracle.database.jdbc:ojdbc11:21.1.0.0")
implementation("org.springframework:spring-jdbc:5.3.9")
implementation('org.springframework:spring-jdbc:5.3.11')
}
4 changes: 2 additions & 2 deletions env-mq-kafka-embedded/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ apply from: "$rootDir/gradle/publish.gradle"

dependencies {
api project(':env-core')
api("org.springframework.kafka:spring-kafka-test:2.7.1")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
api('org.springframework.kafka:spring-kafka-test:2.7.6')
testImplementation('org.jetbrains.kotlin:kotlin-test-junit:1.5.31')
}
2 changes: 1 addition & 1 deletion env-mq-kafka/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ apply from: "$rootDir/gradle/publish.gradle"
dependencies {
api project(':env-container')
api "org.testcontainers:kafka:$testContainers_version"
implementation 'org.apache.kafka:kafka-clients:2.7.0'
implementation 'org.apache.kafka:kafka-clients:2.8.0'
}
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ open class WiremockSystem @JvmOverloads constructor(

data class Config(val host: String = DEFAULT_HOST, val port: Int = DEFAULT_PORT) : ExternalSystemConfig(
PROP_PORT to port.toString(),
PROP_HOST to port.toString()
PROP_HOST to host
) {
companion object {
const val PROP_PORT = "env.wiremock.port"
Expand Down

0 comments on commit 550f0db

Please sign in to comment.