-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.gradle
39 lines (33 loc) · 928 Bytes
/
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 "com.gradle.plugin-publish" version "0.14.0"
id "java-gradle-plugin"
id 'java'
id 'maven-publish'
}
repositories {
jcenter()
mavenLocal()
}
version = "0.0.11"
group = "se.thinkcode"
dependencies {
implementation gradleApi()
testImplementation 'junit:junit:4.12'
testImplementation 'org.assertj:assertj-core:3.11.1'
testImplementation 'org.mockito:mockito-core:2.24.0'
}
gradlePlugin {
plugins {
cucumberRunnerPlugin {
id = 'se.thinkcode.cucumber-runner'
displayName = 'cucumber'
description = 'A Cucumber-JVM runner'
implementationClass = 'se.thinkcode.CucumberRunner'
}
}
}
pluginBundle {
website = 'https://github.com/tsundberg/gradle-cucumber-runner/blob/' + version + '/README.md'
vcsUrl = 'https://github.com/tsundberg/gradle-cucumber-runner'
tags = ['cucumber', 'cucumber-jvm']
}