diff --git a/README.md b/README.md index 9212a72..7b22f22 100644 --- a/README.md +++ b/README.md @@ -68,9 +68,10 @@ spec: ### 1.11.1-dev * Updated: * Cradle API to `5.4.3-dev` (executes insert and update operations on pages atomically) - * th2-gradle-plugin: `0.1.3` (bom: `4.8.0`) + * th2-gradle-plugin: `0.1.3` (th2-bom: `4.8.0`) * common to `5.14.0-dev` * jetty: `9.4.56.v20240826` + * commons-cli: `1.9.0` ### 1.11.0-dev * Migrated to th2 gradle plugin `0.0.8` diff --git a/build.gradle b/build.gradle index 71f5db6..af76175 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ plugins { ext { commonVersion = '5.14.0-dev' - cradleVersion = '5.4.3-TH2-5241-11102256548-fab3f51-SNAPSHOT' + cradleVersion = '5.4.3-dev' } dependencyCheck { @@ -43,8 +43,8 @@ subprojects { testImplementation 'com.exactpro.th2:junit-jupiter-integration:0.0.1' - testImplementation 'org.mockito:mockito-core:5.13.0' - testImplementation 'org.mockito:mockito-junit-jupiter:5.13.0' + testImplementation 'org.mockito:mockito-core:5.14.1' + testImplementation 'org.mockito:mockito-junit-jupiter:5.14.1' testImplementation 'org.junit.jupiter:junit-jupiter:5.11.1' testRuntimeOnly('org.junit.platform:junit-platform-launcher') { diff --git a/cradle-admin-tool-cli/build.gradle b/cradle-admin-tool-cli/build.gradle index d038e82..ddbb775 100644 --- a/cradle-admin-tool-cli/build.gradle +++ b/cradle-admin-tool-cli/build.gradle @@ -12,7 +12,7 @@ dependencies { implementation "com.exactpro.th2:cradle-core:$cradleVersion" implementation "com.exactpro.th2:cradle-cassandra:$cradleVersion" - implementation 'commons-cli:commons-cli:1.7.0' + implementation 'commons-cli:commons-cli:1.9.0' testImplementation project(':cradle-admin-tool-test') } diff --git a/cradle-admin-tool-http/README.md b/cradle-admin-tool-http/README.md index 9aaaf84..b8a20ed 100644 --- a/cradle-admin-tool-http/README.md +++ b/cradle-admin-tool-http/README.md @@ -9,7 +9,7 @@ Service which allows user to manage books/pages via RestAPI requests. ## Configuration -- **ip** - host where http cradle admin instance will be instanciated. Default value: `0.0.0.0` +- **ip** - host where http cradle admin instance will be instantiated. Default value: `0.0.0.0` - **port** - port on which http server will listen user requests. Default value: `8080` - **page-recheck-interval** - interval in seconds which `PageManager` service checks if new page is required to create or not based on duration values presented in `auto-pages`. Default value: 60 seconds - **auto-book** - if `true` than cradle-admin-tool creates books with first page for each value from `auto-pages` option when target book doesn't exist in cradle. @@ -55,6 +55,7 @@ spec: + th2-gradle-plugin: `0.1.3` (bom: `4.8.0`) + common to `5.14.0-dev` + jetty: `9.4.56.v20240826` + + commons-cli: `1.9.0` ### 1.8.0 diff --git a/cradle-admin-tool-http/build.gradle b/cradle-admin-tool-http/build.gradle index cf532b2..b54a857 100644 --- a/cradle-admin-tool-http/build.gradle +++ b/cradle-admin-tool-http/build.gradle @@ -15,7 +15,7 @@ dependencies { implementation "org.eclipse.jetty:jetty-server" implementation "org.eclipse.jetty:jetty-servlet" - implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.2' + implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.0' implementation 'org.apache.commons:commons-lang3'