-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
50 lines (36 loc) · 1.66 KB
/
settings.gradle.kts
File metadata and controls
50 lines (36 loc) · 1.66 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
rootProject.name = "Paklet"
include("paklet-api")
include("paklet-processor")
include("paklet-core")
pluginManagement {
includeBuild("build-logic")
includeBuild("paklet-plugin")
}
include("jmh-benchmarks")
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
val jetbrainsAnnotations: String by settings
library("jetbrains-annotations", "org.jetbrains:annotations:$jetbrainsAnnotations")
val junit: String by settings
library("junit-api", "org.junit.jupiter:junit-jupiter-api:$junit")
library("junit-engine", "org.junit.jupiter:junit-jupiter-engine:$junit")
library("junit-params", "org.junit.jupiter:junit-jupiter-params:$junit")
val asm: String by settings
library("asm", "org.ow2.asm:asm:$asm")
library("asm-commons", "org.ow2.asm:asm-commons:$asm")
val netty: String by settings
library("netty", "io.netty:netty-all:$netty")
val googleAutoservice: String by settings
library("google-autoservice", "com.google.auto.service:auto-service:$googleAutoservice")
val googleGson: String by settings
library("google-gson", "com.google.code.gson:gson:$googleGson")
val jmh: String by settings
library("jmh-core", "org.openjdk.jmh:jmh-core:$jmh")
library("jmh-processors", "org.openjdk.jmh:jmh-generator-annprocess:$jmh")
library("jmh-bytecode", "org.openjdk.jmh:jmh-generator-bytecode:$jmh")
val champeauJmh: String by settings
plugin("champeau-jmh", "me.champeau.jmh").version(champeauJmh)
}
}
}