diff options
Diffstat (limited to 'plugins/build.gradle.kts')
-rw-r--r-- | plugins/build.gradle.kts | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/plugins/build.gradle.kts b/plugins/build.gradle.kts deleted file mode 100644 index 1b15a209..00000000 --- a/plugins/build.gradle.kts +++ /dev/null @@ -1,30 +0,0 @@ -import org.gradle.api.tasks.testing.logging.TestExceptionFormat -import org.gradle.api.tasks.testing.logging.TestLogEvent - -subprojects { - apply { - plugin("maven-publish") - } - - dependencies { - compileOnly(project(":core")) - implementation(kotlin("stdlib-jdk8")) - implementation(kotlin("stdlib")) - implementation(kotlin("reflect")) - - testImplementation(project(":test-utils")) - testImplementation(project(":core:test-api")) - testImplementation("org.junit.jupiter:junit-jupiter:5.6.0") - } - - tasks.test { - useJUnitPlatform() - testLogging { - exceptionFormat = TestExceptionFormat.FULL - events(TestLogEvent.SKIPPED, TestLogEvent.FAILED) - showExceptions = true - showCauses = true - showStackTraces = true - } - } -} |