-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (31 loc) · 1.11 KB
/
build.gradle
File metadata and controls
39 lines (31 loc) · 1.11 KB
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
group 'com.epam.trainings.lab.spring'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
maven { url 'http://repo.spring.io/libs-milestone' }
maven { url 'http://repo.spring.io/libs-release' }
mavenCentral()
jcenter()
mavenLocal()
maven { url 'https://jitpack.io' }
}
configurations {
testCompile.extendsFrom compileOnly
}
dependencies {
compile 'log4j:log4j:+',
'org.hibernate:hibernate-entitymanager:+',
'org.springframework:spring-context-support:+',
'org.springframework:spring-context:+',
'io.javaslang:javaslang:+',
'com.github.Vyacheslav-Lapin:Hegel:master-SNAPSHOT' //https://github.com/Vyacheslav-Lapin/Hegel.git
// 'ch.qos.logback:logback-classic:+',
// 'com.h2database:h2:+',
// 'javax.transaction:jta:+',
// 'org.codehaus.groovy:groovy-all:+'
compileOnly 'org.projectlombok:lombok:+'
testCompile 'org.junit.jupiter:junit-jupiter-api:+',
'org.hamcrest:java-hamcrest:+',
'org.springframework:spring-test:+'
}