forked from jpos/jPOS-EE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibraries.gradle
More file actions
84 lines (70 loc) · 3.29 KB
/
libraries.gradle
File metadata and controls
84 lines (70 loc) · 3.29 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
84
ext {
slf4jVersion = '1.7.1'
logbackVersion = '1.0.13'
hibernateVersion = '4.2.5.Final'
jposVersion = '1.9.3-SNAPSHOT'
jettyVersion = '8.1.7.v20120910'
libraries = [
//jUnit (Tests)
junit: 'junit:junit:4.10',
//jPOS
jpos: "org.jpos:jpos:${jposVersion}",
//Apache Commons
commons_lang: 'commons-lang:commons-lang:2.6',
commons_beanutils: 'commons-beanutils:commons-beanutils:1.8.3',
commons_logging: 'commons-logging:commons-logging:1.1.1',
//SLF4J and logback Stuff
slf4j_api: "org.slf4j:slf4j-api:${slf4jVersion}",
jcl_over_slf4j: "org.slf4j:jcl-over-slf4j:${slf4jVersion}",
log4j_over_slf4j: "org.slf4j:log4j-over-slf4j:${slf4jVersion}",
logback: "ch.qos.logback:logback-classic:${logbackVersion}",
//JODA-Time
joda_time: 'joda-time:joda-time:2.3',
//Hibernate
hibernate_core: "org.hibernate:hibernate-core:${hibernateVersion}",
hibernate_envers: "org.hibernate:hibernate-envers:${hibernateVersion}",
hibernate_c3p0: "org.hibernate:hibernate-c3p0:${hibernateVersion}",
hibernate_ehcache: "org.hibernate:hibernate-ehcache:${hibernateVersion}",
//Supported Databases
jdbcH2: 'com.h2database:h2:1.3.168',
jdbcMysql: 'mysql:mysql-connector-java:5.1.21',
jdbcPostgresql: 'postgresql:postgresql:9.1-901-1.jdbc4',
//Freemarker
freemarker: 'org.freemarker:freemarker:[2.3.19,2.4)',
//Mail
javax_mail: 'javax.mail:mail:1.4.5',
//SSHD
sshd: 'org.apache.sshd:sshd-core:0.6.0',
//Jetty
jetty_webapp: "org.eclipse.jetty:jetty-webapp:${jettyVersion}",
jetty_deploy: "org.eclipse.jetty:jetty-deploy:${jettyVersion}",
jetty_plus: "org.eclipse.jetty:jetty-plus:${jettyVersion}",
jetty_jmx: "org.eclipse.jetty:jetty-jmx:${jettyVersion}",
jetty_jndi: "org.eclipse.jetty:jetty-jndi:${jettyVersion}",
jetty_annotations: "org.eclipse.jetty:jetty-annotations:${jettyVersion}",
jetty_security: "org.eclipse.jetty:jetty-security:${jettyVersion}",
jetty_policy: "org.eclipse.jetty:jetty-policy:${jettyVersion}",
jetty_websocket: "org.eclipse.jetty:jetty-websocket:${jettyVersion}",
jetty_rewrite: "org.eclipse.jetty:jetty-rewrite:${jettyVersion}",
jetty_util: "org.eclipse.jetty:jetty-util:${jettyVersion}",
jetty_servlets: "org.eclipse.jetty:jetty-servlets:${jettyVersion}",
jetty_ajp: "org.eclipse.jetty:jetty-ajp:${jettyVersion}",
// Quartz Scheduler
quartz: 'org.quartz-scheduler:quartz:2.1.7',
]
jettyLibs = [
libraries.jetty_webapp,
libraries.jetty_deploy,
libraries.jetty_plus,
libraries.jetty_jmx,
libraries.jetty_jndi,
libraries.jetty_annotations,
libraries.jetty_security,
libraries.jetty_policy,
libraries.jetty_websocket,
libraries.jetty_rewrite,
libraries.jetty_util,
libraries.jetty_servlets,
libraries.jetty_ajp
]
}