mirror of
https://github.com/corda/corda.git
synced 2025-02-11 13:16:10 +00:00
CORDA-2322 disable owasp assembly scan (#4403)
This commit is contained in:
parent
67c9cc552d
commit
351207145c
@ -50,7 +50,7 @@ buildscript {
|
|||||||
ext.rxjava_version = '1.3.8'
|
ext.rxjava_version = '1.3.8'
|
||||||
ext.dokka_version = '0.9.17'
|
ext.dokka_version = '0.9.17'
|
||||||
ext.eddsa_version = '0.2.0'
|
ext.eddsa_version = '0.2.0'
|
||||||
ext.dependency_checker_version = '3.3.2'
|
ext.dependency_checker_version = '4.0.0'
|
||||||
ext.commons_collections_version = '4.1'
|
ext.commons_collections_version = '4.1'
|
||||||
ext.beanutils_version = '1.9.3'
|
ext.beanutils_version = '1.9.3'
|
||||||
ext.crash_version = 'cadb53544fbb3c0fb901445da614998a6a419488'
|
ext.crash_version = 'cadb53544fbb3c0fb901445da614998a6a419488'
|
||||||
@ -164,6 +164,12 @@ allprojects {
|
|||||||
failOnError = project.getProperty('owasp.failOnError')
|
failOnError = project.getProperty('owasp.failOnError')
|
||||||
// by default CVSS is '11' which passes everything. Set between 0-10 to catch vulnerable deps
|
// by default CVSS is '11' which passes everything. Set between 0-10 to catch vulnerable deps
|
||||||
failBuildOnCVSS = project.getProperty('owasp.failBuildOnCVSS').toFloat()
|
failBuildOnCVSS = project.getProperty('owasp.failBuildOnCVSS').toFloat()
|
||||||
|
|
||||||
|
analyzers {
|
||||||
|
assemblyEnabled = false
|
||||||
|
nuspecEnabled = false
|
||||||
|
nugetconfEnabled = false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
sourceCompatibility = 1.8
|
sourceCompatibility = 1.8
|
||||||
targetCompatibility = 1.8
|
targetCompatibility = 1.8
|
||||||
|
Loading…
x
Reference in New Issue
Block a user