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
131 lines (109 loc) · 5.16 KB
/
libraries.gradle
File metadata and controls
131 lines (109 loc) · 5.16 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
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
ext {
jposVersion = '2.1.2-SNAPSHOT'
slf4jVersion = '1.7.21'
logbackVersion = '1.1.7'
hibernateVersion = '5.2.10.Final'
geronimoVersion = '1.1.1'
jettyVersion = '9.4.5.v20170502'
servletApiVersion = '3.1.0'
websocketApiVersion = '1.1'
jgroupsVersion = '4.0.4.Final'
jaxrsVersion = '2.0.1'
jsonSchemaVersion = '2.2.6'
jacksonVersion = '2.9.4'
groovyVersion = '2.4.12'
restAssuredVersion = '2.9.0'
vaadinVersion = '8.4.1'
nettyVersion = '4.1.24.Final'
libraries = [
//jUnit (Tests)
junit: 'junit:junit:4.12',
//jPOS
jpos: "org.jpos:jpos:${jposVersion}",
//Apache Commons
commons_lang: 'org.apache.commons:commons-lang3:3.4',
commons_logging: 'commons-logging:commons-logging:1.2',
//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}",
jul_to_slf4j: "org.slf4j:jul-to-slf4j:${slf4jVersion}",
logback: "ch.qos.logback:logback-classic:${logbackVersion}",
//JODA-Time
joda_time: 'joda-time:joda-time:2.8',
//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}",
jta: "org.apache.geronimo.specs:geronimo-jta_1.1_spec:${geronimoVersion}",
//Supported Databases
jdbcH2: 'com.h2database:h2:1.4.189',
jdbcMysql: 'mysql:mysql-connector-java:5.1.36',
jdbcPostgresql: 'org.postgresql:postgresql:42.1.1',
jdbcMssql: 'com.microsoft.sqlserver:mssql-jdbc:6.1.0.jre8',
//Freemarker
freemarker: 'org.freemarker:freemarker:[2.3.20,2.4)',
//Mail
javax_mail: 'javax.mail:mail:1.4.7',
//SSHD
sshd: 'org.apache.sshd:sshd-core:0.14.0',
//Servlet API
servlet_api: "javax.servlet:javax.servlet-api:${servletApiVersion}",
//Jetty
jetty_server: "org.eclipse.jetty:jetty-server:${jettyVersion}",
jetty_xml: "org.eclipse.jetty:jetty-xml:${jettyVersion}",
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.websocket:websocket-server:${jettyVersion}",
jetty_websocket_jsr356: "org.eclipse.jetty.websocket:javax-websocket-server-impl:${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}",
jetty_continuation: "org.eclipse.jetty:jetty-continuation:${jettyVersion}",
jetty_rewrite: "org.eclipse.jetty:jetty-rewrite:${jettyVersion}",
// Quartz Scheduler
quartz: 'org.quartz-scheduler:quartz:2.2.1',
// JGroups
jgroups: "org.jgroups:jgroups:${jgroupsVersion}",
// Groovy
groovy: "org.codehaus.groovy:groovy:${groovyVersion}",
groovysh: "org.codehaus.groovy:groovy-groovysh:${groovyVersion}",
groovySql: "org.codehaus.groovy:groovy-sql:${groovyVersion}",
// Jackson
jacksonDatabind: "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}",
// Netty
nettyHandler: "io.netty:netty-handler:${nettyVersion}",
nettyCodecHttp: "io.netty:netty-codec-http:${nettyVersion}",
// RestAssured
restAssured: "com.jayway.restassured:rest-assured:2.9.0"
]
jettyLibs = [
libraries.jetty_server,
libraries.jetty_xml,
libraries.jetty_webapp,
libraries.jetty_deploy,
libraries.jetty_jmx,
libraries.jetty_annotations,
libraries.jetty_websocket,
libraries.jetty_websocket_jsr356,
libraries.jetty_security,
libraries.jetty_continuation,
libraries.jetty_rewrite
]
/*
libraries.jetty_plus,
libraries.jetty_jndi,
libraries.jetty_annotations,
libraries.jetty_policy,
libraries.jetty_servlets,
libraries.jetty_ajp
*/
}