-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (32 loc) · 964 Bytes
/
build.gradle
File metadata and controls
37 lines (32 loc) · 964 Bytes
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
plugins {
id "com.gradle.plugin-publish" version "1.3.1"
id "java-gradle-plugin"
id 'java'
id 'maven-publish'
}
repositories {
mavenCentral()
mavenLocal()
}
version = "0.0.14"
group = "se.thinkcode"
dependencies {
implementation gradleApi()
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.assertj:assertj-core:3.27.3'
testImplementation 'org.mockito:mockito-core:5.15.2'
testImplementation gradleTestKit()
}
gradlePlugin {
website = 'https://github.com/tsundberg/gradle-cucumber-runner/blob/' + version + '/README.md'
vcsUrl = 'https://github.com/tsundberg/gradle-cucumber-runner'
plugins {
cucumberRunnerPlugin {
id = 'se.thinkcode.cucumber-runner'
displayName = 'cucumber'
description = 'A Cucumber-JVM runner'
implementationClass = 'se.thinkcode.CucumberRunner'
tags = ['cucumber', 'cucumber-jvm']
}
}
}