-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (29 loc) · 928 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
36
37
group 'com.klemenski.igor'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.1'
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.junit.platform.gradle.plugin'
apply plugin: 'application'
mainClassName = "runner.ConversionRunner"
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile "org.projectlombok:lombok:1.16.8"
testCompile "org.projectlombok:lombok:1.16.8"
compile group: 'org.slf4j', name:'slf4j-api', version: '1.7.2'
compile group: 'ch.qos.logback', name:'logback-classic', version: '1.0.9'
compile group: 'ch.qos.logback', name:'logback-core', version: '1.0.9'
testCompile('org.junit.jupiter:junit-jupiter-api:5.0.1')
testRuntime('org.junit.jupiter:junit-jupiter-engine:5.0.1')
}