Skip to content

Commit

Permalink
DIAC-123 dependency 07/12/23 (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
nilay913 authored Dec 7, 2023
1 parent b323a8b commit 415cfe2
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
11 changes: 11 additions & 0 deletions Jenkinsfile_nightly
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,15 @@ withNightlyPipeline(type, product, component) {
enableSlackNotifications('#ia-tech')
enableFullFunctionalTest()

afterAlways('DependencyCheckNightly') {
publishHTML([
allowMissing : true,
alwaysLinkToLastBuild: true,
keepAll : true,
reportDir : "build/reports",
reportFiles : 'dependency-check-report.html',
reportName : 'Dependency Check Report'
])
}

}
12 changes: 7 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,8 @@ dependencyCheck {


def versions = [
pitest : '1.15.0',
pitest : '1.15.3',
gradlePitest : '1.15.0',
junit : '5.10.1',
junitPlatform : '1.10.1',
reformLogging : '5.1.7',
Expand Down Expand Up @@ -395,6 +396,9 @@ dependencies {

implementation group: 'org.springdoc', name: 'springdoc-openapi-ui', version: versions.springDoc

implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.13'
implementation group: 'ch.qos.logback', name: 'logback-core', version: '1.2.13'

implementation group: 'uk.gov.hmcts.reform.auth', name: 'auth-checker-lib', version: '2.1.4'


Expand All @@ -411,8 +415,6 @@ dependencies {

testImplementation group: 'org.springframework.security', name: 'spring-security-test'

testImplementation libraries.junit5

testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test'

testImplementation group: 'org.mockito', name: 'mockito-core', version: '3.12.4'
Expand All @@ -433,7 +435,7 @@ dependencies {


testImplementation group: 'org.pitest', name: 'pitest', version: versions.pitest
testImplementation "info.solidsoft.gradle.pitest:gradle-pitest-plugin:${versions.pitest}"
testImplementation "info.solidsoft.gradle.pitest:gradle-pitest-plugin:${versions.gradlePitest}"
testImplementation "org.codehaus.sonar-plugins:sonar-pitest-plugin:${versions.sonarPitest}"

testImplementation group: 'nl.jqno.equalsverifier', name: 'equalsverifier', version: '3.7.2'
Expand All @@ -452,7 +454,7 @@ dependencies {
smokeTestImplementation sourceSets.test.runtimeClasspath

contractTestImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test'

contractTestImplementation libraries.junit5
contractTestImplementation group: 'com.fasterxml.jackson.core', name: 'jackson-core'
contractTestImplementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind'
contractTestImplementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310'
Expand Down

0 comments on commit 415cfe2

Please sign in to comment.