-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
29 lines (25 loc) · 946 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.4.31'
}
group 'tdd.real-life'
version '1'
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
implementation 'com.github.DaikonWeb:daikon:1.9.0'
implementation 'com.github.DaikonWeb:daikon-freemarker:1.9.0'
implementation 'com.github.DaikonWeb:topinambur:1.4.0'
implementation 'org.postgresql:postgresql:42.2.19'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.1'
testImplementation 'org.assertj:assertj-core:3.19.0'
testImplementation 'org.seleniumhq.selenium:selenium-support:4.0.0-beta-1'
testImplementation 'org.seleniumhq.selenium:selenium-firefox-driver:4.0.0-beta-1'
testImplementation 'io.github.bonigarcia:webdrivermanager:4.3.1'
}
test {
useJUnitPlatform()
}