-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
47 lines (36 loc) · 1.83 KB
/
settings.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
plugins {
id "org.gradle.toolchains.foojay-resolver-convention" version "0.8.0"
}
rootProject.name = "SWAT"
include 'symbolic-executor'
include 'targets:instruction-tests:IFXX'
include 'targets:instruction-tests:I2X'
include 'targets:instruction-tests:IXXX'
include 'targets:instruction-tests:TRYCATCH'
include 'targets:instruction-tests:XASTORE'
include 'targets:tests:static-initializer'
include 'targets:examples:Basic-1'
include 'targets:applications:gson'
dependencyResolutionManagement {
versionCatalogs {
libs {
version('asm','9.6')
library('asm-core', 'org.ow2.asm','asm').versionRef('asm')
library('asm-commons', 'org.ow2.asm','asm-commons').versionRef('asm')
library('asm-util', 'org.ow2.asm','asm-util').versionRef('asm')
library('asm-tree', 'org.ow2.asm','asm-tree').versionRef('asm')
library('jackson-databind', 'com.fasterxml.jackson.core:jackson-databind:2.14.1')
library('java-smt', 'org.sosy-lab:java-smt:4.1.1')
library('httpcomponents-httpclient', 'org.apache.httpcomponents:httpclient:4.5.14')
library('httpcomponents-httpasyncclient', 'org.apache.httpcomponents:httpasyncclient:4.1.5')
library('spock-core', 'org.spockframework:spock-core:2.2-M1-groovy-4.0')
library('gson', 'com.google.code.gson:gson:2.9.0')
library('mockito-core', 'org.mockito:mockito-core:3.12.4')
library('logback-classic', 'ch.qos.logback:logback-classic:1.5.3')
library('logback-core', 'ch.qos.logback:logback-core:1.5.3')
bundle('httpcomponents', ['httpcomponents-httpclient', 'httpcomponents-httpasyncclient'])
bundle('asm', ['asm-core', 'asm-commons', 'asm-util', 'asm-tree'])
bundle('logging', ['logback-core', 'logback-classic'])
}
}
}