| plugins { |
| id("org.jetbrains.kotlin.jvm") |
| id("com.vanniktech.maven.publish") |
| } |
| |
| java { |
| sourceCompatibility = JavaVersion.VERSION_1_8 |
| targetCompatibility = JavaVersion.VERSION_1_8 |
| } |
| |
| dependencies { |
| api(projects.shark.shark) |
| |
| implementation(libs.kotlin.stdlib) |
| |
| testImplementation(libs.assertjCore) |
| testImplementation(libs.junit) |
| testImplementation(libs.kotlinStatistics) |
| testImplementation(libs.mockito) |
| testImplementation(libs.mockitoKotlin) |
| testImplementation(libs.okio2) |
| testImplementation(projects.shark.sharkTest) |
| testImplementation(projects.shark.sharkHprofTest) |
| } |