-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversions.gradle
34 lines (30 loc) · 1.24 KB
/
versions.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
/*
* Copyright (c) 2017 - 2020, The casual project. All rights reserved.
*
* This software is licensed under the MIT license, https://opensource.org/licenses/MIT
*/
// group and version
group = 'se.laz.casual'
version = '0.1'
ext.libs = [
netty: 'io.quarkus:quarkus-netty:2.9.1.Final',
jakartaee_api: 'jakarta.platform:jakarta.jakartaee-api:9.1.0',
gson: 'com.google.code.gson:gson:2.9.0',
jta: 'io.quarkus:quarkus-narayana-jta-runtime:0.12.0',
commons_io: 'commons-io:commons-io:2.11.0',
grizzly_http_server: 'org.glassfish.grizzly:grizzly-http-server:3.0.1',
grizzly_container: 'org.glassfish.jersey.containers:jersey-container-grizzly2-http:3.0.4',
jersey_inject: 'org.glassfish.jersey.inject:jersey-hk2:3.1.0-M2',
// test
hamcrest_all: 'org.hamcrest:hamcrest-all:1.3',
commons_io: 'commons-io:commons-io:2.11.0',
system_lambda: 'com.github.stefanbirkner:system-lambda:1.2.0',
// for spock
groovy_all: 'org.codehaus.groovy:groovy:3.0.10',
spock_bom: 'org.spockframework:spock-bom:2.1-groovy-3.0',
spock_core: 'org.spockframework:spock-core',
spock_junit4: 'org.spockframework:spock-junit4',
byte_buddy: 'net.bytebuddy:byte-buddy:1.12.8',
cglib_nodep: 'cglib:cglib-nodep:3.2.4',
objenesis: 'org.objenesis:objenesis:3.2'
]