-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
155 lines (130 loc) · 5.54 KB
/
build.gradle
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
apply plugin: 'base'
apply plugin: 'war'
apply plugin: 'jetty'
apply plugin: 'java'
apply plugin: 'eclipse-wtp'
ext.springVersion='3.1.2.RELEASE'
ext.hibernateVersion='4.1.5.SP1'
ext.hibernateValidatorVersion='4.3.0.Final'
repositories {
maven {
url 'http://maven.springframework.org/milestone'
url 'http://download.java.net/maven/2/'
url 'http://maven.springframework.org/release'
url 'http://maven.springframework.org/snapshot'
}
mavenCentral()
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'postgresql:postgresql:9.0-801.jdbc4'
}
}
dependencies {
compile 'org.apache.commons:commons-lang3:3.0'
compile 'org.apache.commons:commons-io:1.3.2'
compile 'commons-io:commons-io:2.4'
compile 'javax.mail:mail:1.4.7'
compile 'postgresql:postgresql:9.0-801.jdbc4'
compile 'taglibs:standard:1.1.2'
compile 'opensymphony:sitemesh:2.4.2'
compile 'com.efsavage.twitter.bootstrap:bootstrap-maven:2.0.4'
compile 'org.apache.commons:commons-math3:3.2'
//spring framework
compile 'org.springframework:spring-core:4.0.5.RELEASE'
compile 'org.springframework:spring-webmvc:4.0.5.RELEASE'
compile 'org.springframework:spring-context:4.0.5.RELEASE'
compile 'org.springframework:spring-beans:4.0.5.RELEASE'
compile 'org.springframework:spring-context-support:4.0.5.RELEASE'
compile 'commons-httpclient:commons-httpclient:3.1'
compile 'org.springframework:spring-tx:4.0.5.RELEASE'
compile 'org.springframework:spring-orm:4.0.5.RELEASE'
compile 'org.springframework:spring-aop:4.0.5.RELEASE'
compile 'org.springframework:spring-oxm:4.0.5.RELEASE'
compile 'org.springframework:spring-web:4.0.5.RELEASE'
compile 'org.springframework:spring-jdbc:4.0.5.RELEASE'
//spring security
compile 'org.springframework.security:spring-security-core:3.2.4.RELEASE'
compile 'org.springframework.security:spring-security-config:3.2.4.RELEASE'
compile 'org.springframework.security:spring-security-taglibs:3.2.4.RELEASE'
compile 'org.springframework.security:spring-security-web:3.2.4.RELEASE'
//Spring test
compile 'org.springframework:spring-test:4.0.5.RELEASE'
//Spring batch
compile 'org.springframework.batch:spring-batch-core:3.0.1.RELEASE'
compile 'org.apache.httpcomponents:httpclient:4.3.3'
//spring social
compile 'org.springframework.social:spring-social-core:1.1.0.RELEASE'
compile 'org.springframework.social:spring-social-twitter:1.1.0.RELEASE'
compile 'org.springframework.social:spring-social-facebook:1.1.1.RELEASE'
compile 'org.springframework.social:spring-social-facebook-web:1.1.1.RELEASE'
compile 'org.springframework.social:spring-social-config:1.1.0.RELEASE'
compile 'org.springframework.social:spring-social-security:1.1.0.RELEASE'
compile 'org.springframework.social:spring-social-google:1.0.0.RC1'
compile 'org.springframework.social:spring-social-web:1.1.0.RELEASE'
compile 'org.apache.myfaces.core:myfaces-api:2.2.3'
compile 'joda-time:joda-time:2.3'
compile 'com.jolbox:bonecp:0.8.0.RELEASE'
// hibernate
compile 'org.hibernate:hibernate-entitymanager:4.3.5.Final'
compile 'org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final'
compile 'org.hibernate:hibernate-core:4.3.5.Final'
compile 'org.hibernate:hibernate-validator:4.2.0.Final'
// compile 'org.hibernate:hibernate-entitymanager:4.3.5.Final'
//compile 'javax.persistence:persistence-api:1.0.2'
compile 'mysql:mysql-connector-java:5.1.30'
compile 'com.h2database:h2:1.4.178'
compile 'org.springframework.data:spring-data-jpa:1.3.0.RELEASE'
// annotation support
compile 'cglib:cglib:3.1'
compile 'org.aspectj:aspectjrt:1.6.12'
compile 'org.aspectj:aspectjweaver:1.6.12'
//Sentry
compile 'net.kencochrane.raven:raven-log4j:4.0'
compile 'org.sitemesh:sitemesh:3.0-alpha-1'
compile 'junit:junit:4.11'
compile 'com.github.springtestdbunit:spring-test-dbunit:1.1.0'
compile 'dbunit:dbunit:2.2'
compile 'org.liquibase:liquibase-core:3.1.1'
compile 'net.kencochrane.raven:raven-log4j:4.0'
//loggers
compile 'log4j:log4j:1.2.17'
compile 'org.jadira.usertype:usertype.spi:3.2.0.GA'
compile 'org.jadira.usertype:usertype.core:3.2.0.GA'
compile 'org.assertj:assertj-core:1.2.0'
compile 'org.hamcrest:hamcrest-all:1.3'
compile 'org.hamcrest:hamcrest-core:1.3'
compile 'com.googlecode.catch-exception:catch-exception:1.2.0'
compile 'org.mockito:mockito-core:1.9.5'
compile 'org.slf4j:slf4j-api:1.7.5'
compile 'org.slf4j:slf4j-simple:1.7.5'
compile 'ch.qos.logback:logback-core:0.9.17'
compile 'org.slf4j:slf4j-log4j12:1.7.5'
compile 'org.apache.openejb:javaee-api:6.0-6'
compile 'javax.servlet:javax.servlet-api:3.0.1'
compile 'javax.servlet:jstl:1.2'
compile 'javax.servlet.jsp:jsp-api:2.1'
compile 'javax.validation:validation-api:1.0.0.GA'
compile 'org.apache.geronimo.specs:geronimo-osgi-locator:1.1'
compile 'nz.ac.waikato.cms.weka:weka-stable:3.6.11'
compile 'com.google.api-client:google-api-client:1.18.0-rc'
compile 'com.fasterxml.jackson.core:jackson-core:2.4.0'
compile 'com.fasterxml.jackson.datatype:jackson-datatype-hibernate4:2.4.1'
compile 'com.google.http-client:google-http-client:1.18.0-rc'
compile 'com.google.oauth-client:google-oauth-client:1.18.0-rc'
compile 'com.google.http-client:google-http-client-jackson:1.18.0-rc'
compile 'org.json:json:20090211'
compile 'commons-fileupload:commons-fileupload:1.3.1'
compile 'com.hp.hpl.jena:jena:2.6.4'
compile 'net.sf.squirrel-sql.thirdparty-non-maven:java-cup:0.11a'
}
eclipse {
project.natures "org.springframework.ide.eclipse.core.springnature"
}
dependencies {
compile files('src/main/resources/StatUtils.jar')
compile files('src/main/resources/flyway-core-3.0.jar')
}