Skip to content

Commit 2cc7a4b

Browse files
Bump the gradle-updates group across 1 directory with 9 updates
Bumps the gradle-updates group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | net.researchgate.release | `3.0.2` | `3.1.0` | | io.swagger.core.v3:swagger-annotations | `2.2.22` | `2.2.28` | | org.openapi.generator | `7.0.1` | `7.11.0` | | [org.springdoc:springdoc-openapi-starter-webmvc-ui](https://github.com/springdoc/springdoc-openapi) | `2.5.0` | `2.8.3` | | [org.mapstruct:mapstruct](https://github.com/mapstruct/mapstruct) | `1.5.5.Final` | `1.6.3` | | [org.mockito:mockito-core](https://github.com/mockito/mockito) | `3.12.4` | `5.15.2` | | [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit5) | `5.9.2` | `5.11.4` | | [org.testcontainers:testcontainers-bom](https://github.com/testcontainers/testcontainers-java) | `1.19.3` | `1.20.4` | Updates `net.researchgate.release` from 3.0.2 to 3.1.0 Updates `io.swagger.core.v3:swagger-annotations` from 2.2.22 to 2.2.28 Updates `org.openapi.generator` from 7.0.1 to 7.11.0 Updates `org.springdoc:springdoc-openapi-starter-webmvc-ui` from 2.5.0 to 2.8.3 - [Release notes](https://github.com/springdoc/springdoc-openapi/releases) - [Changelog](https://github.com/springdoc/springdoc-openapi/blob/main/CHANGELOG.md) - [Commits](springdoc/springdoc-openapi@v2.5.0...v2.8.3) Updates `org.mapstruct:mapstruct` from 1.5.5.Final to 1.6.3 - [Release notes](https://github.com/mapstruct/mapstruct/releases) - [Commits](mapstruct/mapstruct@1.5.5.Final...1.6.3) Updates `org.mapstruct:mapstruct-processor` from 1.5.5.Final to 1.6.3 - [Release notes](https://github.com/mapstruct/mapstruct/releases) - [Commits](mapstruct/mapstruct@1.5.5.Final...1.6.3) Updates `org.mockito:mockito-core` from 3.12.4 to 5.15.2 - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](mockito/mockito@v3.12.4...v5.15.2) Updates `org.junit.jupiter:junit-jupiter` from 5.9.2 to 5.11.4 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit5@r5.9.2...r5.11.4) Updates `org.testcontainers:testcontainers-bom` from 1.19.3 to 1.20.4 - [Release notes](https://github.com/testcontainers/testcontainers-java/releases) - [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md) - [Commits](testcontainers/testcontainers-java@1.19.3...1.20.4) --- updated-dependencies: - dependency-name: net.researchgate.release dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-updates - dependency-name: io.swagger.core.v3:swagger-annotations dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-updates - dependency-name: org.openapi.generator dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-updates - dependency-name: org.springdoc:springdoc-openapi-starter-webmvc-ui dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-updates - dependency-name: org.mapstruct:mapstruct dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-updates - dependency-name: org.mapstruct:mapstruct-processor dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-updates - dependency-name: org.mockito:mockito-core dependency-type: direct:production update-type: version-update:semver-major dependency-group: gradle-updates - dependency-name: org.junit.jupiter:junit-jupiter dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-updates - dependency-name: org.testcontainers:testcontainers-bom dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-updates ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 2ba0f6f commit 2cc7a4b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

assessment-api/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
plugins {
2-
id 'org.openapi.generator' version '7.0.1'
2+
id 'org.openapi.generator' version '7.11.0'
33
}
44

55
apply plugin: 'uk.gov.laa.ccms.springboot.laa-ccms-spring-boot-gradle-plugin'
66

77
dependencies {
88

9-
implementation 'io.swagger.core.v3:swagger-annotations:2.2.22'
9+
implementation 'io.swagger.core.v3:swagger-annotations:2.2.28'
1010
implementation 'org.springframework.boot:spring-boot-starter-web'
1111
implementation 'org.springframework.data:spring-data-commons'
1212
implementation 'com.google.code.findbugs:jsr305:3.0.2'

assessment-service/build.gradle

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@ dependencies {
1111
implementation 'uk.gov.laa.ccms.springboot:laa-ccms-spring-boot-starter-auth'
1212

1313
//Enable Swagger UI
14-
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.5.0'
14+
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.3'
1515

1616
compileOnly 'org.projectlombok:lombok'
1717
annotationProcessor 'org.projectlombok:lombok'
1818

19-
implementation 'org.mapstruct:mapstruct:1.5.5.Final'
20-
annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.5.Final'
19+
implementation 'org.mapstruct:mapstruct:1.6.3'
20+
annotationProcessor 'org.mapstruct:mapstruct-processor:1.6.3'
2121

2222
testImplementation 'org.springframework.boot:spring-boot-starter-test'
23-
testImplementation 'org.mockito:mockito-core:3.12.4'
24-
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.2'
23+
testImplementation 'org.mockito:mockito-core:5.15.2'
24+
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.4'
2525

2626
//Used for integration tests
27-
implementation platform('org.testcontainers:testcontainers-bom:1.19.3')
27+
implementation platform('org.testcontainers:testcontainers-bom:1.20.4')
2828
testImplementation 'org.testcontainers:testcontainers'
2929
testImplementation 'org.testcontainers:junit-jupiter'
3030
testImplementation 'org.testcontainers:oracle-xe'

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'net.researchgate.release' version '3.0.2'
2+
id 'net.researchgate.release' version '3.1.0'
33
id 'uk.gov.laa.ccms.springboot.laa-ccms-spring-boot-gradle-plugin' version '0.0.8' apply false
44
}
55

0 commit comments

Comments
 (0)