-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
83 lines (60 loc) · 2.49 KB
/
build.gradle
File metadata and controls
83 lines (60 loc) · 2.49 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
apply plugin: 'java'
apply plugin: 'eclipse-wtp'
apply plugin: 'war'
apply plugin : 'jetty'
sourceCompatibility = 1.8
targetCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'
version = '1.0'
repositories {
mavenCentral()
}
dependencies {
compile 'org.springframework:spring-webmvc:4.2.4.RELEASE'
compile 'org.springframework:spring-test:4.2.4.RELEASE'
compile 'org.springframework:spring-orm:4.2.4.RELEASE'
compile group: 'org.springframework.security', name: 'spring-security-web', version: '4.1.3.RELEASE'
compile group: 'org.springframework.security', name: 'spring-security-config', version: '4.1.3.RELEASE'
compile group: 'org.springframework.security.oauth', name: 'spring-security-oauth2', version: '2.1.0.RELEASE'
// https://mvnrepository.com/artifact/org.springframework/spring-context-support
compile group: 'org.springframework', name: 'spring-context-support', version: '4.1.3.RELEASE'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '1.4.0.RELEASE'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '1.4.0.RELEASE'
compile 'org.hibernate:hibernate-validator:4.2.0.Final'
compile 'javax.servlet:javax.servlet-api:3.1.0'
compile 'org.slf4j:slf4j-api:1.7.13'
compile 'org.slf4j:jcl-over-slf4j:1.7.13'
compile 'ch.qos.logback:logback-classic:1.1.3'
compile 'org.mybatis:mybatis:3.3.0'
compile 'org.mybatis:mybatis-spring:1.2.3'
compile 'org.hsqldb:hsqldb:2.3.3'
compile group: 'com.google.guava', name: 'guava', version: '21.0'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.8.8.1'
compile group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version: '2.8.8'
compile group: 'opensymphony', name: 'sitemesh', version: '2.4.2'
compile group: 'org.apache.taglibs', name: 'taglibs-standard-impl', version: '1.2.5'
compile group: 'commons-collections', name: 'commons-collections', version: '3.2'
testCompile group: 'junit', name: 'junit', version: '4.+'
}
jettyRun{
contextPath = "default"
httpPort = 8080
}
jettyRunWar{
contextPath = "default"
httpPort = 8080
}
eclipse {
wtp {
component {
contextPath = 'default'
facet {
facet name: 'jst.web', version: '3.0' // Servlet Spec Version 2.4
facet name: 'jst.java', version: '1.8' // Java Version
}
}
}
}
test {
systemProperties 'property': 'value'
}