-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
35 lines (30 loc) · 878 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
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.4.10'
}
group 'com.ltpquang'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
ext {
xrayUpdaterVersion = "1.0.2"
cucumberVersion = "6.7.0"
cucumberMessageVersion = "13.1.0"
cucumberGherkinVersion = "15.0.2"
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "com.github.ltpquang:xray-status-updater:$xrayUpdaterVersion"
implementation "io.cucumber:cucumber-plugin:$cucumberVersion"
implementation "io.cucumber:messages:$cucumberMessageVersion"
implementation "io.cucumber:gherkin:$cucumberGherkinVersion"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}