49 lines
1.1 KiB
Kotlin
49 lines
1.1 KiB
Kotlin
plugins {
|
|
id("com.android.library")
|
|
id("org.jetbrains.kotlin.android")
|
|
id("kotlin-kapt")
|
|
id("dagger.hilt.android.plugin")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.smoa.core.as4"
|
|
compileSdk = AppConfig.compileSdk
|
|
|
|
defaultConfig {
|
|
minSdk = AppConfig.minSdk
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core:common"))
|
|
implementation(project(":core:security"))
|
|
|
|
implementation(Dependencies.androidxCoreKtx)
|
|
|
|
// AS4/XML Security
|
|
implementation(Dependencies.cxfCore)
|
|
implementation(Dependencies.cxfRtFrontendJaxws)
|
|
implementation(Dependencies.cxfRtBindingsSoap)
|
|
implementation(Dependencies.santuario)
|
|
|
|
// Cryptography
|
|
implementation(Dependencies.bouncycastle)
|
|
implementation(Dependencies.bouncycastlePkix)
|
|
|
|
implementation(Dependencies.hiltAndroid)
|
|
kapt(Dependencies.hiltAndroidCompiler)
|
|
|
|
implementation(Dependencies.coroutinesCore)
|
|
implementation(Dependencies.coroutinesAndroid)
|
|
}
|
|
|