xref: /aosp_15_r20/external/leakcanary2/shark-graph/build.gradle (revision d9e8da70d8c9df9a41d7848ae506fb3115cae6e6)
1plugins {
2  id("org.jetbrains.kotlin.jvm")
3  id("com.vanniktech.maven.publish")
4}
5
6sourceCompatibility = JavaVersion.VERSION_1_8
7targetCompatibility = JavaVersion.VERSION_1_8
8
9dependencies {
10  api projects.sharkHprof
11
12  implementation libs.kotlin.stdlib
13  implementation libs.okio2
14
15  testImplementation libs.assertjCore
16  testImplementation libs.junit
17  testImplementation projects.sharkTest
18  testImplementation projects.sharkHprofTest
19}
20