diff --git a/build.gradle b/build.gradle index ab9486daee8..30ded81bd46 100644 --- a/build.gradle +++ b/build.gradle @@ -18,7 +18,7 @@ plugins { // release id "io.github.gradle-nexus.publish-plugin" version "1.1.0" - id 'net.researchgate.release' version '2.8.1' + id 'net.researchgate.release' version '3.0.0' id "com.gorylenko.gradle-git-properties" version "2.4.1" id 'signing' id 'ru.vyarus.pom' version '2.2.1' apply false @@ -407,6 +407,6 @@ release { buildTasks = ['classes'] git { - requireBranch = 'release' + requireBranch.set('release') } } diff --git a/core/build.gradle b/core/build.gradle index 2c250fedf45..19b8aad307e 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -20,7 +20,7 @@ dependencies { // utils implementation group: 'net.jodah', name: 'failsafe', version: '2.4.4' - implementation 'com.github.oshi:oshi-core:6.1.6' + implementation 'com.github.oshi:oshi-core:6.2.0' implementation 'io.pebbletemplates:pebble:3.1.5' // scheduler @@ -33,10 +33,10 @@ dependencies { implementation 'com.github.docker-java:docker-java-transport-httpclient5:3.2.13' // schema - implementation group: 'com.github.victools', name: 'jsonschema-generator', version: '4.24.3' - implementation group: 'com.github.victools', name: 'jsonschema-module-javax-validation', version: '4.24.3' - implementation group: 'com.github.victools', name: 'jsonschema-module-jackson', version: '4.24.3' - implementation group: 'com.github.victools', name: 'jsonschema-module-swagger-2', version: '4.24.3' + implementation group: 'com.github.victools', name: 'jsonschema-generator', version: '4.25.0' + implementation group: 'com.github.victools', name: 'jsonschema-module-javax-validation', version: '4.25.0' + implementation group: 'com.github.victools', name: 'jsonschema-module-jackson', version: '4.25.0' + implementation group: 'com.github.victools', name: 'jsonschema-module-swagger-2', version: '4.25.0' // test testImplementation project(':repository-memory')