mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-19 07:44:23 +01:00
27 lines
476 B
Groovy
27 lines
476 B
Groovy
apply plugin: 'idea'
|
|
apply plugin: 'groovy'
|
|
apply plugin: 'maven'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile(
|
|
localGroovy(),
|
|
gradleApi(),
|
|
'org.owasp:dependency-check-core:1.2.10',
|
|
'org.owasp:dependency-check-utils:1.2.10'
|
|
)
|
|
}
|
|
|
|
group = 'com.tools.security'
|
|
version = '0.0.1'
|
|
|
|
uploadArchives {
|
|
repositories {
|
|
mavenDeployer {
|
|
repository(url: uri('../../../repo'))
|
|
}
|
|
}
|
|
} |