forked from dsrees/JavaPhoenixClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
75 lines (59 loc) · 1.63 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.14.2'
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.4.30'
}
}
plugins {
id 'java'
id 'jacoco'
id 'org.jetbrains.kotlin.jvm' version '1.3.31'
}
ext {
RELEASE_REPOSITORY_URL = "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/"
SNAPSHOT_REPOSITORY_URL = "https://s01.oss.sonatype.org/content/repositories/snapshots/"
}
apply plugin: "org.jetbrains.dokka"
apply plugin: "com.vanniktech.maven.publish"
group 'com.github.dsrees'
version '1.1.4'
sourceCompatibility = 1.8
repositories {
jcenter()
mavenCentral()
}
test {
// JUnit 5 Support
useJUnitPlatform()
// This allows us see tests execution progress in the output on the CI.
testLogging {
events 'passed', 'skipped', 'failed', 'standardOut', 'standardError'
exceptionFormat 'full'
}
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile "com.google.code.gson:gson:2.8.5"
compile "com.squareup.okhttp3:okhttp:3.12.2"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
testCompile group: 'com.google.truth', name: 'truth', version: '1.1.3'
testCompile group: 'org.mockito', name: 'mockito-core', version: '4.0.0'
testCompile group: 'org.mockito.kotlin', name: 'mockito-kotlin', version: '4.0.0'
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled false
}
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}