-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
77 lines (62 loc) · 1.86 KB
/
Copy pathbuild.gradle
File metadata and controls
77 lines (62 loc) · 1.86 KB
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
75
76
77
buildscript {
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: "org.jetbrains.kotlin.jvm"
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
configurations {
exportedClasspath
}
sourceSets {
main {
kotlin {
exclude "**/demo/**"
}
}
}
dependencies {
api "com.bardsoftware.papeeria.backend:libbackyard-proto:$_version"
api "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
api "com.google.cloud:google-cloud-pubsub:1.+"
api 'com.google.guava:guava:28.+'
api "com.spotify:docker-client:8.+"
implementation "com.xenomachina:kotlin-argparser:2.+"
implementation 'com.github.kittinunf.fuel:fuel:2.+'
implementation 'com.github.kittinunf.fuel:fuel-coroutines:2.+'
implementation 'com.zaxxer:HikariCP:2.7.+'
implementation 'org.postgresql:postgresql:42.2.11'
implementation 'ch.qos.logback:logback-classic:1.2.+'
implementation 'ch.qos.logback:logback-core:1.2.+'
implementation "io.grpc:grpc-core:$grpc_version"
implementation "io.grpc:grpc-stub:$grpc_version"
implementation "io.grpc:grpc-netty:$grpc_version"
implementation "io.grpc:grpc-netty-shaded:$grpc_version"
implementation "io.netty:netty-tcnative-boringssl-static:2.0.34.Final"
exportedClasspath configurations.implementation
testCompile configurations.compile
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.+'
}
sourceCompatibility = 11
targetCompatibility = 11
compileKotlin {
kotlinOptions.jvmTarget = "11"
}
group 'com.bardsoftware.papeeria.backend'
version "2020.03.20"
test {
useJUnitPlatform()
testLogging {
exceptionFormat = 'full'
}
}