forked from JetBrains/xodus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
108 lines (80 loc) · 3.92 KB
/
settings.gradle.kts
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
pluginManagement {
plugins {
id("org.jetbrains.kotlin.jvm") version ("1.8.21")
id("org.jetbrains.dokka") version ("1.8.10")
id("com.github.hierynomus.license") version ("0.16.1")
id("io.codearte.nexus-staging") version ("0.30.0")
id("com.github.johnrengelman.shadow") version ("8.1.1")
id("me.champeau.jmh") version ("0.7.1")
}
repositories {
maven(url = "https://cache-redirector.jetbrains.com/plugins.gradle.org/m2")
maven(url = "https://cache-redirector.jetbrains.com/repo1.maven.org/maven2")
}
}
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
version("kotlin-lang", "1.8")
version("kotlin", "1.8.21")
version("kotlin-logging", "3.0.5")
version("lz4", "1.8.0")
version("slf4j", "2.0.7")
version("jetbrains-annotations", "24.0.0")
version("jcTools", "4.0.1")
version("junit", "4.13.2")
version("commons-compress", "1.22")
version("bouncyCastle", "1.70")
version("commons-io", "2.11.0")
version("lucene", "8.10.0")
version("fastutil", "8.5.9")
library("slf4j-api", "org.slf4j", "slf4j-api").versionRef("slf4j")
library("slf4j-simple", "org.slf4j", "slf4j-simple").versionRef("slf4j")
library("jetbrains-annotations", "org.jetbrains", "annotations").versionRef("jetbrains-annotations")
library("jcTools-core", "org.jctools", "jctools-core").versionRef("jcTools")
library("junit", "junit", "junit").versionRef("junit")
library("commons-compress", "org.apache.commons", "commons-compress").versionRef("commons-compress")
library("kotlin-stdlib", "org.jetbrains.kotlin", "kotlin-stdlib").versionRef("kotlin")
library("kotlin-stdlib-jdk8", "org.jetbrains.kotlin", "kotlin-stdlib-jdk8").versionRef("kotlin")
library("kotlin-logging", "io.github.microutils", "kotlin-logging").versionRef("kotlin-logging")
library("commons-io", "commons-io", "commons-io").versionRef("commons-io")
library("lz4", "org.lz4", "lz4-java").versionRef("lz4")
library("bouncyCastle", "org.bouncycastle", "bcprov-jdk15on").versionRef("bouncyCastle")
library("lucene-core", "org.apache.lucene", "lucene-core").versionRef("lucene")
library("lucene-analyzers-common", "org.apache.lucene", "lucene-analyzers-common").versionRef("lucene")
library("lucene-queries", "org.apache.lucene", "lucene-queries").versionRef("lucene")
library("lucene-queryparser", "org.apache.lucene", "lucene-queryparser").versionRef("lucene")
library("lucene-test-framework", "org.apache.lucene", "lucene-test-framework").versionRef("lucene")
library("fastutil", "it.unimi.dsi", "fastutil").versionRef("fastutil")
}
}
}
rootProject.name = "xodus"
include("utils")
project(":utils").name = "xodus-utils"
include("openAPI")
project(":openAPI").name = "xodus-openAPI"
include("compress")
project(":compress").name = "xodus-compress"
include("crypto")
project(":crypto").name = "xodus-crypto"
include("environment")
project(":environment").name = "xodus-environment"
include("entity-store")
project(":entity-store").name = "xodus-entity-store"
include("query")
project(":query").name = "xodus-query"
include("benchmarks")
project(":benchmarks").name = "xodus-benchmarks"
include("samples")
project(":samples").name = "xodus-samples"
include("tools")
project(":tools").name = "xodus-tools"
include("environment-crash-tests")
project(":environment-crash-tests").name = "xodus-environment-crash-tests"
include("lucene-directory-v2")
project(":lucene-directory-v2").name = "xodus-lucene-directory-v2"
include("environment-test")
project(":environment-test").name = "xodus-environment-test"
include("utils-test")
project(":utils-test").name = "xodus-utils-test"