-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdependencies.gradle
56 lines (46 loc) · 1.62 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
54
55
56
ext {
xtextVersion = '2.33.0'
spockVersion = "2.3-groovy-3.0"
jacksonVersion = "2.16.1"
yaml = [
snakeyaml: 'org.yaml:snakeyaml:2.2'
]
google = [
guava: 'com.google.guava:guava:33.0.0-jre'
]
commons = [
lang3: 'org.apache.commons:commons-lang3:3.12',
cli: 'commons-cli:commons-cli:1.4',
io: 'commons-io:commons-io:2.15.1'
]
_antlr = [
antlr: 'org.antlr:antlr4:4.13.1'
]
jackson_core = [
annotations: "com.fasterxml.jackson.core:jackson-annotations:${jacksonVersion}",
core: "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}",
databind: "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}",
dataformat_yaml: "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:${jacksonVersion}"
]
emf = [
common: 'org.eclipse.emf:org.eclipse.emf.common:2.29.0',
ecore: 'org.eclipse.emf:org.eclipse.emf.ecore:2.35.0',
ecore_xcore_lib: 'org.eclipse.emf:org.eclipse.emf.ecore.xcore.lib:1.7.0'
]
hypertino = [
inflector: 'com.hypertino:inflector_2.13:1.0.13'
]
damnhandy = [
handy_uri_templates: 'com.damnhandy:handy-uri-templates:2.1.8'
]
spockframework = [
spock_core: "org.spockframework:spock-core:${spockVersion}"
]
assertj = [
core: 'org.assertj:assertj-core:3.25.1'
]
junit = [
junit: 'org.junit.jupiter:junit-jupiter:5.10.1',
dataprovider: 'com.tngtech.junit.dataprovider:junit-jupiter-dataprovider:2.10'
]
}