2020-03-22 00:45:40 +01:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'org.jetbrains.kotlin.jvm'
|
2023-04-16 09:40:48 +02:00
|
|
|
alias(libs.plugins.validator)
|
2020-03-22 00:45:40 +01:00
|
|
|
id 'jacoco'
|
|
|
|
}
|
|
|
|
|
2023-11-28 22:55:58 +01:00
|
|
|
repositories {
|
|
|
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
|
|
|
|
}
|
|
|
|
|
2020-03-22 00:45:40 +01:00
|
|
|
dependencies {
|
2023-11-28 22:55:58 +01:00
|
|
|
implementation 'io.github.wulkanowy.signer:hebe-jvm:0.1.0-SNAPSHOT'
|
2020-03-22 00:45:40 +01:00
|
|
|
|
2023-04-15 20:50:43 +02:00
|
|
|
implementation libs.retrofit.core
|
|
|
|
implementation libs.retrofit.scalars
|
2023-05-02 00:03:32 +02:00
|
|
|
implementation libs.retrofit.serialization
|
2023-04-16 12:41:53 +02:00
|
|
|
|
2024-03-02 11:07:55 +01:00
|
|
|
testImplementation "io.mockk:mockk-jvm:1.13.10"
|
2020-03-22 00:45:40 +01:00
|
|
|
}
|