forked from rusefi/rusefi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies.gradle
More file actions
27 lines (26 loc) · 1.42 KB
/
Copy pathdependencies.gradle
File metadata and controls
27 lines (26 loc) · 1.42 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
ext {
global_libs = [
junit4 : "junit:junit:4.13.2",
junit5 : "org.junit.jupiter:junit-jupiter-api:$junit5Version",
junit5engine : "org.junit.jupiter:junit-jupiter-engine:$junit5Version",
junit5api : "org.junit.jupiter:junit-jupiter-api:$junit5Version",
annotations : "org.jetbrains:annotations:16.0.1",
jsr305 : "com.google.code.findbugs:jsr305:3.0.2",
antlr : "org.antlr:antlr4:4.13.0",
json : "com.googlecode.json-simple:json-simple:1.1.1",
mockito : "org.mockito:mockito-core:4.11.0",
javaxJson : "javax.json:javax.json-api:1.1.4",
snakeyaml : "org.yaml:snakeyaml:1.26",
commons_logging: "commons-logging:commons-logging:1.2",
jcip : 'net.jcip:jcip-annotations:1.0',
// jakarta 3 works with java 8 which we keep for TS plugin
// one day once we give up on TS plugin we shall go jakarta 4 which would require java 11
jaxb : 'jakarta.xml.bind:jakarta.xml.bind-api:3.0.1',
jaxb_runtime : 'org.glassfish.jaxb:jaxb-runtime:3.0.2',
]
ts_plugin_libs = [
httpclient : "org.apache.httpcomponents.client5:httpclient5:5.4.2",
httpcore : "org.apache.httpcomponents.core5:httpcore5:5.3.3",
launcher_api: fileTree( dir: "lib", include: "TunerStudioPluginAPI.jar" )
]
}