forked from gradle/gradle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
37 lines (31 loc) · 1.16 KB
/
build.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
plugins {
id("gradlebuild.distribution.api-java")
id("gradlebuild.jmh")
}
dependencies {
api(project(":build-cache-base"))
api(project(":snapshots"))
implementation(project(":base-services"))
implementation(project(":core-api"))
implementation(project(":files"))
implementation(project(":file-temp"))
implementation(project(":native"))
implementation(project(":persistent-cache"))
implementation(project(":resources"))
implementation(project(":logging"))
implementation(libs.slf4jApi)
implementation(libs.guava)
implementation(libs.inject)
jmhImplementation(platform(project(":distributions-dependencies")))
jmhImplementation(libs.ant)
jmhImplementation(libs.commonsCompress)
jmhImplementation(libs.aircompressor)
jmhImplementation(libs.snappy)
jmhImplementation(libs.jtar)
jmhImplementation(libs.commonsIo)
testImplementation(project(":model-core"))
testImplementation(project(":file-collections"))
testImplementation(testFixtures(project(":core")))
testImplementation(testFixtures(project(":base-services")))
integTestDistributionRuntimeOnly(project(":distributions-core"))
}