forked from Vyacheslav-Lapin/lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (25 loc) · 821 Bytes
/
build.gradle
File metadata and controls
32 lines (25 loc) · 821 Bytes
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
apply plugin: 'java'
group = 'com.epam.course.java8'
version = '1.0-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
}
configurations {
testCompile.extendsFrom compileOnly
}
dependencies {
compile 'com.google.guava:guava:+',
'org.apache.commons:commons-lang3:+',
'ch.qos.logback:logback-classic:+',
'io.javaslang:javaslang:+',
'com.github.Vyacheslav-Lapin:Hegel:master-SNAPSHOT' //https://github.com/Vyacheslav-Lapin/Hegel.git
compileOnly 'org.projectlombok:lombok:+',
'edu.washington.cs.types.checker:checker-framework:+'
testCompile 'org.junit.jupiter:junit-jupiter-api:+',
'org.hamcrest:java-hamcrest:+'
}