forked from divkit/divkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (33 loc) · 1.04 KB
/
build.gradle
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
apply plugin: 'kotlin'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20"
}
}
repositories {
mavenCentral()
}
sourceSets {
main {
java.srcDirs += 'src/generated/kotlin'
}
}
def versions = [
jackson: "2.14.0",
jsonAssert: "1.5.1",
junit5: "5.9.1",
kotlin: "1.7.20"
]
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$versions.kotlin"
implementation "org.jetbrains.kotlin:kotlin-reflect:$versions.kotlin"
implementation "com.fasterxml.jackson.core:jackson-annotations:$versions.jackson"
implementation "com.fasterxml.jackson.core:jackson-databind:$versions.jackson"
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:$versions.jackson"
testImplementation "org.junit.jupiter:junit-jupiter-api:$versions.junit5"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$versions.junit5"
testImplementation "org.skyscreamer:jsonassert:$versions.jsonAssert"
}