-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
58 lines (47 loc) · 1.6 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import jdk.internal.dynalink.linker.LinkerServices
buildscript {
apply from: "https://apptik.io/props.gradle"
repositories {
mavenCentral()
jcenter()
maven {
url 'http://oss.sonatype.org/content/repositories/snapshots'
}
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'kotlin'
group GROUP
version VERSION_NAME
dependencies {
compile kotlin_stdlib_jdk8
compile "io.github.microutils:kotlin-logging:1.6.25"
compile "org.slf4j:slf4j-api:1.7.26"
// compile "org.slf4j:slf4j-simple:1.7.26"
compile "org.apache.logging.log4j:log4j-core:2.11.1"
compile "org.apache.logging.log4j:log4j-api:2.11.2"
//// compile "org.apache.logging.log4j:log4j-slf4j18-impl:2.11.2"
compile "org.apache.logging.log4j:log4j-slf4j-impl:2.11.2"
// compile "org.apache.logging.log4j:log4j-to-slf4j:2.11.2"
compile vx_core
compile vx_rx_java2
compile vx_kotlin
testCompile "org.elasticsearch.client:elasticsearch-rest-client:6.6.2"
// compile "org.elasticsearch:elasticsearch:6.6.1"
testCompile "org.elasticsearch.client:elasticsearch-rest-high-level-client:6.6.2"
testCompile "org.testcontainers:elasticsearch:1.10.6"
testCompile vx_unit
testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.3.1'
}
test {
useJUnitPlatform()
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
apply from: 'https://raw.githubusercontent.com/djodjoni/gradle-mvn-push/master/gradle-mvn-push.gradle'