forked from jpos/jPOS-EE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
libraries.gradle
166 lines (139 loc) · 6.67 KB
/
libraries.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
156
157
158
159
160
161
162
163
164
165
166
ext {
jposVersion = '2.1.8-SNAPSHOT'
slf4jVersion = '1.7.28'
logbackVersion = '1.2.8'
hibernateVersion = '5.6.11.Final'
geronimoVersion = '1.1.1'
jettyVersion = '9.4.44.v20210927'
servletApiVersion = '4.0.1'
websocketApiVersion = '1.1'
jgroupsVersion = '4.1.5.Final'
jaxrsVersion = '2.0.1'
jsonSchemaVersion = '2.2.11'
guavaVersion = '31.0.1-jre'
jacksonVersion = '2.10.5.1'
groovyVersion = '3.0.4'
jlineVersion = '2.14.6'
restAssuredVersion = '2.9.0'
vaadinVersion = '8.14.1'
nettyVersion = '4.1.73.Final'
httpAsyncClientVersion = '4.1.5'
mysqlJDBCVersion = '8.0.28'
c3p0Version = '0.9.5.4'
postgresJDBCVersion = '42.2.13'
flywaydbVersion = '6.0.4'
liquibaseVersion = '3.8.0'
elkVersion = '7.16.1'
orgjsonVersion = '20200518'
postgresqlEmbeddedVersion = '1.2.8'
postgresqlBinVersion = '12.3.0'
libraries = [
//jUnit (Tests)
junit: 'org.junit.jupiter:junit-jupiter:5.5.2',
//jPOS
jpos: "org.jpos:jpos:${jposVersion}",
//Apache Commons
commons_lang: 'org.apache.commons:commons-lang3:3.9',
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}",
// Postgresql embedded for tests
postgresql_embedded: "io.zonky.test:embedded-postgres:${postgresqlEmbeddedVersion}",
// Postgresql embedded binary version
postgresql_bin: "io.zonky.test.postgres:embedded-postgres-binaries-bom:${postgresqlBinVersion}",
//JODA-Time
joda_time: 'joda-time:joda-time:2.10.12',
//Hibernate
hibernate_core: "org.hibernate:hibernate-core:${hibernateVersion}",
hibernate_envers: "org.hibernate:hibernate-envers:${hibernateVersion}",
hibernate_c3p0: "org.hibernate:hibernate-c3p0:${hibernateVersion}",
c3p0: "com.mchange:c3p0:${c3p0Version}",
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.199',
jdbcMysql: "mysql:mysql-connector-java:${mysqlJDBCVersion}",
jdbcPostgresql: "org.postgresql:postgresql:${postgresJDBCVersion}",
jdbcMssql: 'com.microsoft.sqlserver:mssql-jdbc:7.4.1.jre8',
//Freemarker
freemarker: 'org.freemarker:freemarker:[2.3.29,2.4)',
//Mail
javax_mail: 'javax.mail:javax.mail-api:1.6.2',
//SSHD
sshd: 'org.apache.sshd:sshd-core:2.3.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.3.2',
// 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}",
// Jline
jline: "jline:jline:${jlineVersion}",
// 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: "io.rest-assured:rest-assured:4.3.0",
jsonSchemaValidator: "com.github.java-json-tools:json-schema-validator:${jsonSchemaVersion}",
guava: "com.google.guava:guava:${guavaVersion}",
httpAsyncClient: "org.apache.httpcomponents:httpasyncclient:${httpAsyncClientVersion}",
flywaydb: "org.flywaydb:flyway-core:${flywaydbVersion}",
liquibase: "org.liquibase:liquibase-core:${liquibaseVersion}",
elk: "org.elasticsearch.client:elasticsearch-rest-high-level-client:${elkVersion}",
orgJson: "org.json:json:${orgjsonVersion}"
]
jsonSchemaValidatorLibs = [
libraries.jsonSchemaValidator,
libraries.guava
]
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
*/
}