Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
build(reminder): create new submodule reminder
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaBrighi committed Jun 1, 2023
1 parent db00f66 commit 69a764e
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
1 change: 1 addition & 0 deletions reminderDomain/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
36 changes: 36 additions & 0 deletions reminderDomain/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
plugins {
id("java-library")
id("org.jetbrains.kotlin.jvm")
}

java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

tasks {
withType<Test> {
useJUnitPlatform()
testLogging {
showCauses = true
showStackTraces = true
showStandardStreams = true
events(*org.gradle.api.tasks.testing.logging.TestLogEvent.values())
}
}
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions {
allWarningsAsErrors = true
freeCompilerArgs += listOf("-opt-in=kotlin.RequiresOptIn", "-Xinline-classes")
}
}
}

dependencies {
implementation(project(":accessDomain"))
implementation(project(":schoolDomain"))
implementation(project(":desktopDomain"))
implementation(libs.kotlinx.coroutines.core)
testImplementation(gradleTestKit())
testImplementation(libs.bundles.kotlin.testing)
}
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,5 @@ include(":accessData")
include(":desktopDomain")
include(":desktopData")
include(":schoolDomain")
include(":reminderDomain")
include(":networkUtility")

0 comments on commit 69a764e

Please sign in to comment.