Skip to content

Commit e614b84

Browse files
authored
Dependency check upd (#70)
* Disable dependencyCheckAnalyze
1 parent 63f948f commit e614b84

File tree

3 files changed

+4
-21
lines changed

3 files changed

+4
-21
lines changed

.circleci/config.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ jobs:
1414
paths:
1515
- ~/.gradle/caches
1616
- ~/.gradle/wrapper
17-
- run:
18-
name: Audit Dependencies
19-
command: ./gradlew dependencyCheckAnalyze
2017
- run:
2118
name: Run Unit Tests
2219
command: ./gradlew test --daemon

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 2.4.4 (August 12, 2021)
2+
* Remove dependencyCheckAnalyze task
3+
14
## 2.4.3 (February 12, 2021)
25

36
* Update sailor version to 3.3.2

build.gradle

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
group = 'io.elastic'
2-
version = '2.4.3'
2+
version = '2.4.4'
33
apply plugin: 'java'
44
apply plugin: 'idea'
55
apply plugin: 'eclipse'
66
apply plugin: 'groovy'
7-
apply plugin: org.owasp.dependencycheck.gradle.DependencyCheckPlugin
87

98
sourceSets {
109
integrationTest {
@@ -73,22 +72,6 @@ dependencies {
7372
testCompile 'org.spockframework:spock-core:1.1-groovy-2.4'
7473
}
7574

76-
check.dependsOn dependencyCheckAnalyze
77-
78-
dependencyCheck {
79-
format = 'ALL'
80-
failBuildOnCVSS = 8
81-
}
82-
83-
buildscript {
84-
repositories {
85-
mavenCentral()
86-
}
87-
dependencies {
88-
classpath 'org.owasp:dependency-check-gradle:6.0.3'
89-
}
90-
}
91-
9275
wrapper {
9376
gradleVersion = '5.4.1'
9477
}

0 commit comments

Comments
 (0)