xref: /aosp_15_r20/external/perfmark/testing/build.gradle.kts (revision 27e8546d0ef5f99cf83d5252272c7dd38d18d29a)

<lambda>null1 buildscript {
2     extra.apply{
3         set("moduleName", "io.perfmark.testing")
4     }
5 }
6 
7 val jdkVersion = JavaVersion.VERSION_11
8 
9 description = "PerfMark Testing"
10 
<lambda>null11 dependencies {
12     implementation(project(":perfmark-api"))
13     implementation(project(":perfmark-impl"))
14     implementation(libs.jmhcore)
15     implementation(libs.junit)
16 }
17 
<lambda>null18 tasks.named<JavaCompile>("compileJava") {
19     sourceCompatibility = jdkVersion.toString()
20     targetCompatibility = jdkVersion.toString()
21 }
22 
<lambda>null23 tasks.named<Javadoc>("javadoc") {
24     exclude("io/perfmark/testing/**")
25 }
26