This repository has been archived by the owner on Mar 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
68 lines (55 loc) · 1.5 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
plugins {
id 'java-gradle-plugin'
id 'com.gradle.plugin-publish' version '0.12.0'
id 'org.owasp.dependencycheck' version '5.3.2.1'
}
apply from: 'publish-to-plugin-portal.gradle'
apply plugin: 'groovy'
apply plugin: 'maven-publish'
apply plugin: 'maven'
repositories {
mavenCentral()
}
dependencies {
compile('org.yaml:snakeyaml:1.26')
testCompile('com.github.tomakehurst:wiremock:2.26.3')
testCompile('org.spockframework:spock-core:1.3-groovy-2.5')
}
group = 'org.rewedigital'
version = '0.5.2'
dependencyCheck {
failBuildOnCVSS = 0
suppressionFile = "dependency-check-suppressions.xml"
analyzers {
assemblyEnabled = false
centralEnabled = false
retirejs.enabled = false
}
}
check.dependsOn dependencyCheckAnalyze
gradlePlugin {
plugins {
simplePlugin {
id = 'org.rewedigital.frost'
implementationClass = 'org.rewedigital.frost.FrostPlugin'
displayName = 'FROST system test runtime'
description = 'Creates a system test runtime to enable powerful UI testing during your CI build.'
}
}
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}
uploadArchives {
repositories {
mavenDeployer {
repository(url: mavenDeploymentRepositoryUrl) {
authentication(userName: mavenDeploymentRepositoryUsername, password: mavenDeploymentRepositoryPassword)
}
}
}
}