-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
29 lines (25 loc) · 822 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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.21'
}
group 'com.selenium.kt'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile "net.serenity-bdd:serenity-core:2.0.41"
compile "net.serenity-bdd:serenity-screenplay:2.0.41"
compile "net.serenity-bdd:serenity-cucumber:1.9.31"
compile "net.serenity-bdd:serenity-screenplay-rest:2.0.41"
compile 'io.github.microutils:kotlin-logging:1.6.24'
compile "net.serenity-bdd:serenity-junit:2.0.41"
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.5'
testCompile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.5'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}