import org.gradle.api.tasks.testing.logging.TestExceptionFormat plugins { alias(libs.plugins.androidLibrary) id("maven-publish") } android { namespace = "org.openeel.httpipc.server" compileSdk { version = release(libs.versions.android.compileSdk.get().toInt()) } defaultConfig { minSdk = libs.versions.android.minSdk.get().toInt() testInstrumentationRunner = "org.openeel.libcache.ipc.server.InstrumentationTestRunner" } compileOptions { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } publishing { singleVariant("release") { withSourcesJar() } } } tasks.withType { testLogging { exceptionFormat = TestExceptionFormat.FULL showStackTraces = true } } publishing { publications { register("release") { groupId = project.group.toString() artifactId = project.name version = project.version.toString() afterEvaluate { from(components["release"]) } } } } dependencies { api(projects.libHttpIpcShared) api(libs.okhttp) implementation(libs.androidx.appcompat) implementation(libs.androidx.core.ktx) testImplementation(libs.junit) androidTestImplementation(projects.libHttpIpcClient) androidTestImplementation(projects.libIpcMessagebridge) androidTestImplementation(projects.respectLibTestResources) androidTestImplementation(libs.mockwebserver) androidTestImplementation(libs.androidx.espresso.core) androidTestImplementation(libs.androidx.junit) androidTestImplementation(libs.androidx.rules) }