-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
61 lines (50 loc) · 2.12 KB
/
build.gradle
File metadata and controls
61 lines (50 loc) · 2.12 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
plugins {
id 'idea'
id 'java'
id 'application'
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
id "org.jetbrains.kotlin.kapt" version '1.3.72'
id 'com.google.protobuf' version '0.8.8'
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
group 'com.project5e'
version '1.0-SNAPSHOT'
def vertxVersion = "4.0.0-milestone5"
def junitVersion = "5.7.0-M1"
repositories {
maven { url "https://maven.aliyun.com/repository/public" }
maven { url "https://maven.aliyun.com/repository/gradle-plugin" }
mavenCentral()
jcenter()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.3.7"
implementation "io.vertx:vertx-lang-kotlin:$vertxVersion"
implementation "io.vertx:vertx-lang-kotlin-coroutines:$vertxVersion"
implementation "io.vertx:vertx-core:$vertxVersion"
implementation "io.vertx:vertx-web:$vertxVersion"
implementation "io.vertx:vertx-web-client:$vertxVersion"
implementation "io.vertx:vertx-service-proxy:$vertxVersion"
kapt "io.vertx:vertx-service-proxy:$vertxVersion"
implementation "io.vertx:vertx-codegen:$vertxVersion"
implementation "io.vertx:vertx-codegen:$vertxVersion:processor"
kapt "io.vertx:vertx-codegen:$vertxVersion:processor"
// // GRPC
// implementation "io.vertx:vertx-grpc:${vertxVersion}"
// implementation "com.google.protobuf:protobuf-java:3.11.4"
// implementation "com.google.protobuf:protobuf-java-util:3.11.4"
// implementation "io.grpc:grpc-protobuf:1.28.1"
// implementation "io.grpc:grpc-stub:1.28.1"
implementation "ch.qos.logback:logback-classic:1.2.3"
implementation "org.slf4j:jcl-over-slf4j:1.7.30"
testImplementation "io.vertx:vertx-junit5:$vertxVersion"
testImplementation "io.vertx:vertx-web-client:$vertxVersion"
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
}
test {
useJUnitPlatform()
systemProperty "outlets.appkey", System.getProperty("outlets.appkey")
}
mainClassName = "com.project5e.TunerLauncher"