rusefi/java_tools/dependencies.gradle

26 lines
1.2 KiB
Groovy
Raw Normal View History

ext {
global_libs = [
2024-02-14 11:43:20 -08:00
junit4 : "junit:junit:4.13.2",
2023-12-15 06:51:08 -08:00
junit5 : "org.junit.jupiter:junit-jupiter-api:$junit5Version",
junit5engine : "org.junit.jupiter:junit-jupiter-engine:$junit5Version",
2023-12-15 08:26:40 -08:00
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-all:1.10.19",
javaxJson : "javax.json:javax.json-api:1.1.4",
snakeyaml : "org.yaml:snakeyaml:1.26",
commons_logging: "commons-logging:commons-logging:1.2",
2022-10-15 20:45:58 -07:00
jcip : 'net.jcip:jcip-annotations:1.0',
2023-11-25 14:24:06 -08:00
jaxb : 'org.glassfish.jaxb:jaxb-runtime:2.3.9',
]
ts_plugin_libs = [
2022-10-15 20:52:59 -07:00
httpclient : "org.apache.httpcomponents:httpclient:4.5.13",
httpcore : "org.apache.httpcomponents:httpcore:4.4.13",
httpmime : "org.apache.httpcomponents:httpmime:4.5.12",
launcher_api: fileTree( dir: "lib", include: "TunerStudioPluginAPI.jar" )
]
2023-12-15 06:51:08 -08:00
}