-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdependencies.gradle
49 lines (46 loc) · 2.42 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
/*
* Copyright 2021 Andreas Textor
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
ext.deps = [
caffeine : 'com.github.ben-manes.caffeine:caffeine:2.9.2',
commons_codec : 'commons-codec:commons-codec:1.16.1',
commons_io : 'org.apache.commons:commons-io:1.3.2',
commons_text : 'org.apache.commons:commons-text:1.11.0',
guava : 'com.google.guava:guava:33.0.0-jre',
httpclient : 'org.apache.httpcomponents:httpclient:4.5.14',
jackson_databind : 'com.fasterxml.jackson.core:jackson-databind:2.16.2',
jena : 'org.apache.jena:jena:4.10.0',
jena_core : 'org.apache.jena:jena-core:4.10.0',
jena_arq : 'org.apache.jena:jena-arq:4.10.0',
logback : 'ch.qos.logback:logback-classic:1.5.3',
openllet : 'com.github.galigator.openllet:openllet-jena:2.6.5',
owlapi : 'net.sourceforge.owlapi:owlapi-distribution:5.5.0',
picocli : 'info.picocli:picocli:4.7.5',
picocli_codegen : 'info.picocli:picocli-codegen:4.7.5',
slf4j_api : 'org.slf4j:slf4j-api:2.0.12',
svm : 'org.graalvm.nativeimage:svm:23.1.2',
turtle_formatter : 'de.atextor:turtle-formatter:1.2.13',
vavr : 'io.vavr:vavr:0.10.4',
// Test
junit_jupiter_api : 'org.junit.jupiter:junit-jupiter-api:5.10.2',
junit_jupiter_params: 'org.junit.jupiter:junit-jupiter-params:5.10.2',
junit_jupiter_engine: 'org.junit.jupiter:junit-jupiter-engine:5.10.2',
assertj : 'org.assertj:assertj-core:3.25.3',
jqwik : 'net.jqwik:jqwik:1.8.3',
classgraph : 'io.github.classgraph:classgraph:4.8.168',
// Documentation
nodejs : '12.13.1',
npm : '6.9.0'
]