-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathdependencies.gradle
53 lines (53 loc) · 2.85 KB
/
dependencies.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
ext {
libraries = [
jpa: 'org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final',
jta: 'javax.transaction:jta:1.1',
c3p0: 'com.mchange:c3p0:0.9.5.2',
slf4j: 'org.slf4j:slf4j-api:1.7.25',
slf4j_log4j: 'org.slf4j:slf4j-log4j12:1.7.25',
jcl_over_slf4j: 'org.slf4j:jcl-over-slf4j:1.7.25',
log4j: 'log4j:log4j:1.2.17',
junit: 'junit:junit:4.12',
jetty: 'org.mortbay.jetty:jetty:6.1.26',
servlet_api: 'javax.servlet:javax.servlet-api:4.0.1',
hibernate: 'org.hibernate:hibernate-core:4.3.11.Final',
hibernate_ehcache: 'org.hibernate:hibernate-ehcache:4.3.11.Final',
hibernate_c3po: 'org.hibernate:hibernate-c3p0:4.3.11.Final',
javassist: 'org.javassist:javassist:3.20.0-GA',
cglib: 'cglib:cglib-nodep:2.2.2',
ehcache: 'net.sf.ehcache:ehcache:2.10.5',
//ehcache: 'org.ehcache:ehcache:3.1.3',
freemarker: 'org.freemarker:freemarker:2.3.24-incubating',
javax_mail: 'javax.mail:mail:1.4.7',
//quartz: 'org.quartz-scheduler:quartz:2.2.3',
quartz: 'org.quartz-scheduler:quartz:2.3.0',
dom4j: 'dom4j:dom4j:1.6.1',
json_lib: 'net.sf.json-lib:json-lib:2.4:jdk15',
commons_fileupload: 'commons-fileupload:commons-fileupload:1.2.2',
commons_io: 'commons-io:commons-io:1.4',
httpclient: 'org.apache.httpcomponents:httpclient:4.5.2',
xstream: 'com.thoughtworks.xstream:xstream:1.4.9',
dwr: 'org.directwebremoting:dwr:3.0.1-RELEASE',
yuicompressor: 'com.yahoo.platform.yui:yuicompressor:2.4.8',
htmlparser: 'org.htmlparser:htmlparser:2.1',
hsqldb: 'org.hsqldb:hsqldb:1.8.0.10',
apache_poi: 'org.apache.poi:poi:3.14',
spring_core : 'org.springframework:spring-core:4.3.18.RELEASE',
spring_expression : 'org.springframework:spring-expression:4.3.18.RELEASE',
spring_beans : 'org.springframework:spring-beans:4.3.18.RELEASE',
spring_aop : 'org.springframework:spring-aop:4.3.18.RELEASE',
spring_context : 'org.springframework:spring-context:4.3.18.RELEASE',
spring_context_support : 'org.springframework:spring-context-support:4.3.18.RELEASE',
spring_tx : 'org.springframework:spring-tx:4.3.18.RELEASE',
spring_jdbc : 'org.springframework:spring-jdbc:4.3.18.RELEASE',
spring_orm : 'org.springframework:spring-orm:4.3.18.RELEASE',
spring_oxm : 'org.springframework:spring-oxm:4.3.18.RELEASE',
spring_web : 'org.springframework:spring-web:4.3.18.RELEASE',
spring_webmvc : 'org.springframework:spring-webmvc:4.3.18.RELEASE',
spring_test : 'org.springframework:spring-test:4.3.18.RELEASE',
lucene_core : 'org.apache.lucene:lucene-core:2.9.4',
lucene_highlighter : 'org.apache.lucene:lucene-highlighter:2.9.4',
lucene_analyzers : 'org.apache.lucene:lucene-analyzers:2.9.4',
lucene_snowball : 'org.apache.lucene:lucene-snowball:2.9.4'
]
}