forked from hypertrace/hypertrace-core-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
29 lines (27 loc) · 1.17 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
plugins {
id("org.hypertrace.repository-plugin") version "0.4.0"
id("org.hypertrace.ci-utils-plugin") version "0.3.0"
id("org.hypertrace.jacoco-report-plugin") version "0.2.0" apply false
id("org.hypertrace.docker-java-application-plugin") version "0.9.0" apply false
id("org.hypertrace.docker-publish-plugin") version "0.9.0" apply false
id("org.hypertrace.code-style-plugin") version "1.1.0" apply false
}
subprojects {
group = "org.hypertrace.core.graphql"
pluginManager.withPlugin("java") {
apply(plugin = "org.hypertrace.code-style-plugin")
configure<JavaPluginExtension> {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
}
pluginManager.withPlugin("java-library") {
dependencies {
"api"(platform(project(":hypertrace-core-graphql-platform")))
"annotationProcessor"(platform(project(":hypertrace-core-graphql-platform")))
"testAnnotationProcessor"(platform(project(":hypertrace-core-graphql-platform")))
"testImplementation"(platform(project(":hypertrace-core-graphql-test-platform")))
"compileOnly"(platform(project(":hypertrace-core-graphql-platform")))
}
}
}