-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
44 lines (38 loc) · 1.09 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import java.net.URI
group = "io.github.sergkhram"
version = "1.2.10-RELEASE"
buildscript {
dependencies {
classpath("com.fasterxml.jackson.core:jackson-databind:2.12.3")
classpath(kotlin("stdlib-jdk8"))
classpath(gradleApi())
classpath("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3")
classpath("com.malinskiy.adam:adam:0.4.3")
classpath("io.qameta.allure.gradle.allure:allure-plugin:2.9.6")
classpath("io.qameta.allure.gradle.report:allure-report-plugin:2.9.6")
classpath("io.qameta.allure.gradle.base:allure-base-plugin:2.9.6")
classpath("io.qameta.allure.gradle.adapter:allure-adapter-plugin:2.9.6")
gradleApi()
}
repositories {
jcenter()
mavenCentral()
google()
gradlePluginPortal()
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
google()
gradlePluginPortal()
}
}
plugins {
kotlin("jvm") version "1.4.32"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}