-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathbuild.gradle
44 lines (33 loc) · 1.02 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
plugins {
id 'groovy'
id 'java-gradle-plugin'
id 'java'
id "com.gradle.plugin-publish" version "0.12.0"
}
apply from: "$rootDir/gradle/functional-test.gradle"
group = 'io.snyk.gradle.plugin'
version = '0.7.0'
pluginBundle {
website = 'https://github.com/snyk/gradle-plugin'
vcsUrl = 'https://github.com/snyk/gradle-plugin'
tags = ['security', 'scanning', 'dependencies']
}
gradlePlugin {
plugins {
snykPlugin {
id = 'io.snyk.gradle.plugin.snykplugin'
displayName = 'Snyk Security Scanner for Gradle'
description = 'Find and fix vulnerabilities in your third-party dependencies with this Snyk for Gradle plugin'
implementationClass = 'io.snyk.gradle.plugin.SnykPlugin'
}
}
}
repositories{
mavenCentral()
}
// dependencies of this plugin
dependencies {
testImplementation('org.spockframework:spock-core:2.0-groovy-2.5')
testImplementation 'junit:junit:4.13.1'
testImplementation 'org.mockito:mockito-core:2.7.22'
}