-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
61 lines (51 loc) · 1.89 KB
/
build.gradle
File metadata and controls
61 lines (51 loc) · 1.89 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
import org.gradle.plugins.ide.eclipse.model.Facet
apply plugin: 'maven'
apply plugin: 'war'
apply plugin: 'eclipse-wtp'
webAppDirName = 'WebContent'
sourceSets.main.java.srcDir 'src'
eclipse {
classpath {
defaultOutputDir = file('build/eclipse')
}
}
repositories {
mavenCentral()
}
dependencies {
providedCompile (
"javax.servlet:javax.servlet-api:3.1.0"
)
compile (
"com.google.code.gson:gson:2.3",
"mysql:mysql-connector-java:5.1.33",
"org.mybatis:mybatis:3.2.8",
"org.mybatis:mybatis-spring:1.2.2",
"org.springframework:spring-core:4.1.1.RELEASE",
"org.springframework:spring-tx:4.1.1.RELEASE",
"org.springframework:spring-jdbc:4.1.1.RELEASE",
"org.springframework:spring-context:4.1.1.RELEASE",
"org.springframework:spring-beans:4.1.1.RELEASE",
"org.springframework:spring-web:4.1.1.RELEASE",
"org.springframework:spring-aop:4.1.1.RELEASE",
"org.springframework:spring-expression:4.1.1.RELEASE",
"org.aspectj:aspectjrt:1.8.3",
"org.aspectj:aspectjweaver:1.8.3",
//"org.apache.commons:commons-dbcp2:2.0.1",
"commons-dbcp:commons-dbcp:20030825.184428",
"commons-pool:commons-pool:20030825.183949",
"org.apache.struts:struts2-spring-plugin:2.3.16.3",
"org.apache.struts:struts2-core:2.3.16.3",
"org.apache.struts:struts2-convention-plugin:2.3.16.3",
"org.apache.struts:struts2-json-plugin:2.3.16.3",
"org.apache.logging.log4j:log4j:2.1",
"org.slf4j:slf4j-api:1.7.7",
"org.slf4j:slf4j-log4j12:1.7.7",
"com.jgeppert.struts2.jquery:struts2-jquery:3.7.1",
"com.jgeppert.struts2.jquery:struts2-jquery-plugin:3.7.1",
"com.jgeppert.struts2.jquery:struts2-jquery-grid-plugin:3.7.1",
"com.jgeppert.struts2.jquery:struts2-jquery-tree-plugin:3.7.1",
"com.jgeppert.struts2.jquery:struts2-jquery-chart-plugin:3.7.1",
"com.jgeppert.struts2.jquery:struts2-jquery-mobile-plugin:3.7.1"
)
}