Skip to content

Commit 3e148af

Browse files
committed
Removed checkstyle and OSS checks
1 parent d5ed7d4 commit 3e148af

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

build.gradle

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,10 @@ import com.vanniktech.maven.publish.SonatypeHost
44

55
plugins {
66
id 'java-library'
7-
id 'checkstyle'
87
id 'jacoco'
98
id 'com.vanniktech.maven.publish' version '0.32.0' // publish to Maven Central
109
id 'com.github.ben-manes.versions' version '0.52.0' // check for out-of-date dependencies (run 'dependencyUpdates' manually)
1110
id 'com.github.spotbugs' version '6.2.4' // spotbugs code analysis
12-
id 'org.sonatype.gradle.plugins.scan' version '3.1.1' // scan for vulnerabilities
1311
id 'org.sonarqube' version '6.2.0.5505' // sonarQube analysis
1412
}
1513

@@ -76,26 +74,6 @@ jar {
7674
}
7775
}
7876

79-
// Nexus vulnerability scan (https://github.com/sonatype-nexus-community/scan-gradle-plugin)
80-
ossIndexAudit {
81-
outputFormat = 'DEPENDENCY_GRAPH'
82-
printBanner = false
83-
84-
excludeVulnerabilityIds = [
85-
'CVE-2022-42003',
86-
'CVE-2022-42004',
87-
'sonatype-2022-6438'
88-
]
89-
}
90-
check.dependsOn 'ossIndexAudit'
91-
92-
// checkstyle plugin settings
93-
checkstyle {
94-
ignoreFailures = true
95-
configFile = project(':').file('config/checkstyle/checkstyle.xml')
96-
configProperties = ['suppressionFile': project(':').file('config/checkstyle/suppressions.xml')]
97-
}
98-
9977
// jacoco plugin settings
10078
jacocoTestReport {
10179
reports {

0 commit comments

Comments
 (0)