-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (36 loc) · 1.52 KB
/
build.gradle
File metadata and controls
44 lines (36 loc) · 1.52 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
40
41
42
43
44
group 'com.socialnetwork'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'war'
repositories {
mavenCentral()
}
dependencies {
compile 'log4j:log4j:+'
compile 'javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api:+'
compile 'com.h2database:h2:+'
compile 'commons-codec:commons-codec:+'
compileOnly 'org.projectlombok:lombok:+'
testCompile 'org.projectlombok:lombok:+'
// https://mvnrepository.com/artifact/javax.servlet/jstl
compile group: 'javax.servlet', name: 'jstl', version: '1.2'
providedCompile 'org.apache.tomcat:tomcat-api:+'
providedCompile 'org.apache.tomcat:tomcat-jsp-api:+'
providedCompile 'org.apache.tomcat:tomcat-catalina:+'
//Unit tests
testCompile 'junit:junit:+'
testCompile 'org.hamcrest:hamcrest-core:+'
testCompile 'org.hamcrest:hamcrest-library:+'
testCompile 'org.mockito:mockito-core:+'
// Jersey
compile 'org.glassfish.jersey.containers:jersey-container-servlet:+'
compile 'org.glassfish.jersey.media:jersey-media-moxy:+'
// Jackson
compile 'com.fasterxml.jackson.core:jackson-databind:+'
// https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload
compile group: 'commons-fileupload', name: 'commons-fileupload', version: '1.3.1'
// https://mvnrepository.com/artifact/commons-io/commons-io
compile group: 'commons-io', name: 'commons-io', version: '2.4'
// https://mvnrepository.com/artifact/org.imgscalr/imgscalr-lib
compile group: 'org.imgscalr', name: 'imgscalr-lib', version: '4.2'
}