-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
45 lines (38 loc) · 1.14 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
40
41
42
43
44
45
plugins {
id 'java-gradle-plugin'
id 'maven-publish'
id 'com.gradle.plugin-publish' version '0.20.0'
}
group 'com.trileuco'
version version
description = 'Gradle plugin to help publishing bom to Dependency-track'
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
withSourcesJar()
}
repositories {
mavenCentral()
}
pluginBundle {
website = 'https://github.com/trileuco/dependency-track-gradle'
vcsUrl = 'https://github.com/trileuco/dependency-track-gradle.git'
tags = ['dependency-track', 'cyclonedx', 'vulnerability', 'dependency']
}
gradlePlugin {
plugins {
dependencyTrackPlugin {
id = 'com.trileuco.dependency-track-gradle'
displayName = 'Dependecy-track for Gradle'
description = 'Gradle plugin to help publishing bom to Dependency-track'
implementationClass = 'com.trileuco.gradle.DependencyTrackPlugin'
}
}
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}
test {
useJUnitPlatform()
}