Skip to content

Commit 3fd193c

Browse files
committed
chore: update circleCI to use latest java 17 and 21 versions and remove OWASP dependency check
1 parent b43e048 commit 3fd193c

File tree

3 files changed

+1
-9
lines changed

3 files changed

+1
-9
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build-java17:
88
docker:
99
# specify the version you desire here
10-
- image: cimg/openjdk:17.0.10
10+
- image: cimg/openjdk:17.0
1111

1212
working_directory: ~/repo
1313

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ plugins {
55
//https://discuss.gradle.org/t/how-do-i-include-buildscript-block-from-external-gradle-script/7016/2
66
id "com.github.nbaztec.coveralls-jacoco" version "1.2.18"
77
id "de.aaschmid.cpd" version "3.3"
8-
id "org.owasp.dependencycheck" version "8.4.3"
98
id "org.ajoberstar.grgit" version "5.2.1"
109
id "com.github.spotbugs" version "6.0.7"
1110
id 'info.solidsoft.pitest' version '1.15.0'

code-quality.gradle

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,6 @@ cpdCheck {
103103
}
104104
}
105105

106-
dependencyCheck {
107-
skipTestGroups=true
108-
skipConfigurations=['spotbugs','cpd'] //don't look for vulnerabilities in the build plugins
109-
outputDirectory="$buildDir/reports/OWASP"
110-
failBuildOnCVSS=7
111-
}
112-
113106
pitest {
114107
//turn on to figure out why BagitProfileTest is failing
115108
//verbose = true

0 commit comments

Comments
 (0)