-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (32 loc) · 1.02 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
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.4.21'
}
configurations {
scripts
}
group 'ar.com.florius'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
def junitVersion = '5.3.1'
def slf4jVersion = '1.7.30'
def kotlinVersion = '1.4.21'
dependencies {
implementation "net.bytebuddy:byte-buddy:1.10.19"
implementation "org.objenesis:objenesis:3.1"
implementation "org.slf4j:slf4j-api:${slf4jVersion}"
implementation "org.slf4j:slf4j-simple:${slf4jVersion}"
implementation "org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:${kotlinVersion}"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junitVersion}"
testImplementation "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
testImplementation "net.jqwik:jqwik:1.3.10"
implementation "org.jetbrains.kotlin:kotlin-script-runtime:${kotlinVersion}"
}
test {
useJUnitPlatform {
includeEngines 'jqwik', 'junit-jupiter'
}
}