-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
43 lines (32 loc) · 947 Bytes
/
build.gradle
File metadata and controls
43 lines (32 loc) · 947 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
33
34
35
36
37
38
39
40
41
42
43
group 'com.epam.trainings.jf.project'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'war'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
mavenLocal()
}
configurations {
testCompile.extendsFrom compileOnly
}
// this turns logging on in tests:
test.testLogging.showStandardStreams = true
dependencies {
compile 'ch.qos.logback:logback-classic:+',
'io.javaslang:javaslang:+',
'com.h2database:h2:+'
// Tomcat internal libraries
providedCompile 'org.apache.tomcat:tomcat-api:+',
'org.apache.tomcat:tomcat-jsp-api:+'
compileOnly 'org.projectlombok:lombok:+'
testCompile 'org.junit.jupiter:junit-jupiter-api:+',
'org.hamcrest:java-hamcrest:+'
compile 'javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api:+'
compile 'taglibs:standard:+'
}
task wrapper(type: Wrapper) {
gradleVersion = '3.4'
}