-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (36 loc) · 1.09 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
buildscript {
repositories {
maven {
url 'https://dl.bintray.com/alfa-laboratory/maven-releases/'
}
}
dependencies {
classpath 'ru.alfalab.gradle:cucumber-parallel-test-gradle-plugin:0.3.2'
classpath 'ru.alfalab.gradle:cucumber-reporting-gradle-plugin:0.1.0'
classpath 'ru.alfalab.gradle:cucumber-parallel-test-gradle-plugin:0.3.1'
classpath 'nl.javadude.gradle.plugins:license-gradle-plugin:0.10.0'
}
}
plugins {
id 'java'
id 'io.freefair.lombok' version '5.0.0'
}
apply plugin: 'ru.alfalab.cucumber-parallel-test'
generateRunner.glue = ["ru.alfabank.steps", "ru.netology.web.steps"]
group 'ru.netology'
version '1.0-SNAPSHOT'
sourceCompatibility = 11
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
repositories {
jcenter()
mavenCentral()
}
dependencies
{
testImplementation 'ru.alfabank.tests:akita:4.1.3'
testImplementation 'com.codeborne:selenide:5.11.1'
}
test {
systemProperty 'selenide.headless', System.getProperty('selenide.headless')
}