-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependencies.gradle
45 lines (36 loc) · 2.21 KB
/
dependencies.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
ext {
kotlinVersion = '1.7.0'
grpcVersion = '1.45.1'
protobufVersion = '0.8.18'
springBootVersion = '2.6.6'
gradlePlugins = [
kotlin: "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}",
protobuf: "com.google.protobuf:protobuf-gradle-plugin:${protobufVersion}",
springBoot: "org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}"
]
libs = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}",
kotlinReflect : "org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}",
springBootStarterWeb: "org.springframework.boot:spring-boot-starter-web:${springBootVersion}",
springDoc : 'org.springdoc:springdoc-openapi-ui:1.6.4',
protoc : "com.google.protobuf:protoc:3.19.4",
protocGen : "io.grpc:protoc-gen-grpc-java:${grpcVersion}",
protoGenKt : "io.grpc:protoc-gen-grpc-kotlin:1.2.1:jdk7@jar",
grpcAll : "io.grpc:grpc-all:${grpcVersion}",
protobuf : "io.grpc:grpc-protobuf:${grpcVersion}",
grpcKotlin : "io.grpc:grpc-kotlin-stub-lite:1.0.0",
javaxAnnotations : "javax.annotation:javax.annotation-api:1.3.2",
grpcSpringStarter : 'net.devh:grpc-server-spring-boot-starter:2.13.0.RELEASE',
coroutines : 'org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.0',
slf4j : 'org.slf4j:slf4j-api:1.7.36',
logback : 'ch.qos.logback:logback-classic:1.2.11',
test : [
springBootStarterTest: "org.springframework.boot:spring-boot-starter-test:${springBootVersion}",
junitApi : 'org.junit.jupiter:junit-jupiter-api:5.8.2',
junitEngine : 'org.junit.jupiter:junit-jupiter-engine:5.8.2',
mockito : 'org.mockito:mockito-core:4.4.0',
kotestAssertions : 'io.kotest:kotest-assertions-core:5.0.0',
coroutinesTest : 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.0'
]
]
}