forked from sirixdb/sirix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
libraries.gradle
59 lines (57 loc) · 3.6 KB
/
libraries.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
57
58
59
ext {
implLibraries = [:]
testLibraries = [:]
compileOnlyLibraries = [:]
}
implLibraries = [
chronicleMap : 'net.openhft:chronicle-map:3.17.3',
jcommander : 'com.beust:jcommander:1.69',
aspectjrt : 'org.aspectj:aspectjrt:1.8.10',
slf4jApi : 'org.slf4j:slf4j-api:1.7.25',
perfidix : 'org.perfidix:perfidix:3.6.9',
xmlunit : 'xmlunit:xmlunit:1.6',
logbackClassic : 'ch.qos.logback:logback-classic:1.2.3',
logbackCore : 'ch.qos.logback:logback-core:1.2.3',
guice : 'com.google.inject:guice:4.2.2',
gson : 'com.google.code.gson:gson:2.8.6',
guava : 'com.google.guava:guava:28.2-jre',
guavaTestlib : 'com.google.guava:guava-testlib:28.2-jre',
jsr305 : 'com.google.code.findbugs:jsr305:3.0.2',
brackit : 'io.sirix:brackit:0.1.7-SNAPSHOT',
caffeine : 'com.github.ben-manes.caffeine:caffeine:2.8.1',
snappyJava : 'org.xerial.snappy:snappy-java:1.1.7.3',
browniesCollections : 'org.magicwerk:brownies-collections:0.9.14',
tink : 'com.google.crypto.tink:tink:1.2.1',
kotlinStdlib : 'org.jetbrains.kotlin:kotlin-stdlib:1.3.61',
kotlinxCoroutinesCore : 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3',
vertxCore : 'io.vertx:vertx-core:4.0.2',
vertxWeb : 'io.vertx:vertx-web:4.0.2',
vertxLangKotlin : 'io.vertx:vertx-lang-kotlin:4.0.2',
vertxLangKotlinCoroutines: 'io.vertx:vertx-lang-kotlin-coroutines:4.0.2',
vertxAuthOauth2 : 'io.vertx:vertx-auth-oauth2:4.0.2',
vertxWebClient : 'io.vertx:vertx-web-client:4.0.2',
vertxConfig : 'io.vertx:vertx-config:4.0.2',
kotlinStdlibJdk8 : 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61',
jsoup : 'org.jsoup:jsoup:1.11.3',
kotlinxCli : 'org.jetbrains.kotlinx:kotlinx-cli:0.2.1',
integercompression : 'me.lemire.integercompression:JavaFastPFOR:0.1.12'
]
testLibraries = [
testng : 'org.testng:testng:7.1.0',
junitJupiterApi : 'org.junit.jupiter:junit-jupiter-api:5.6.0',
junitJupiterEngine : 'org.junit.jupiter:junit-jupiter-engine:5.6.0',
junitJupiterParams : 'org.junit.jupiter:junit-jupiter-params:5.6.0',
junitVintageEngine : 'org.junit.vintage:junit-vintage-engine:5.6.0',
junitPlatformLauncher : 'org.junit.platform:junit-platform-launcher:1.6.0',
junitPlatformRunner : 'org.junit.platform:junit-platform-runner:1.6.0',
mockitoCore : 'org.mockito:mockito-core:3.5.15',
byteBuddy : 'net.bytebuddy:byte-buddy:1.10.17',
brackit : 'io.sirix:brackit:0.1.7-SNAPSHOT:tests',
kotlinTestJunit : 'org.jetbrains.kotlin:kotlin-test-junit:1.3.60',
junit : 'junit:junit:4.12',
vertxJunit5 : 'io.vertx:vertx-junit5:4.0.2',
jsonassert : 'org.skyscreamer:jsonassert:1.5.0',
kotestAssertions : 'io.kotest:kotest-assertions-core-jvm:4.0.5',
commonsCollections4 : 'org.apache.commons:commons-collections4:4.3',
commonsCollections4Tests : 'org.apache.commons:commons-collections4:4.3:tests'
]