initial commit
This commit is contained in:
25
domain/build.gradle.kts
Normal file
25
domain/build.gradle.kts
Normal file
@@ -0,0 +1,25 @@
|
||||
// [FILE] domain/build.gradle.kts
|
||||
// [PURPOSE] Build script for the domain module.
|
||||
|
||||
plugins {
|
||||
id("org.jetbrains.kotlin.jvm")
|
||||
}
|
||||
|
||||
java {
|
||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
targetCompatibility = JavaVersion.VERSION_1_8
|
||||
}
|
||||
|
||||
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
||||
kotlinOptions.jvmTarget = "1.8"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
// [DEPENDENCY] KotlinX Coroutines for asynchronous operations
|
||||
implementation(Libs.coroutinesCore)
|
||||
|
||||
// [DEPENDENCY] Javax Inject for DI annotations
|
||||
implementation("javax.inject:javax.inject:1")
|
||||
}
|
||||
|
||||
// [END_FILE_domain/build.gradle.kts]
|
||||
Reference in New Issue
Block a user