forked from lkishalmi/gradle-gatling-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (41 loc) · 1.06 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
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gradle.publish:plugin-publish-plugin:0.9.2"
}
}
apply plugin: 'java-gradle-plugin'
apply plugin: 'groovy'
apply plugin: "com.gradle.plugin-publish"
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
repositories {
jcenter()
}
dependencies {
testCompile gradleTestKit()
testCompile("org.spockframework:spock-core:1.0-groovy-2.4") {
exclude module: "groovy-all"
}
}
test {
testLogging {
showStandardStreams = true
}
}
pluginBundle {
website = 'https://github.com/lkishalmi/gradle-gatling-plugin'
vcsUrl = 'https://github.com/lkishalmi/gradle-gatling-plugin'
description = 'Gatling Simulation Execution'
tags = ['gradle-plugin', 'gatling', 'load test', 'stress test', 'performance test', 'scala']
plugins {
gatlingPlugin {
id = 'com.github.lkishalmi.gatling'
displayName = 'Gatling Simulation Execution'
}
}
}