mirror of
https://github.com/aljazceru/lnd-manageJ.git
synced 2026-02-23 15:04:39 +01:00
30 lines
866 B
Plaintext
30 lines
866 B
Plaintext
plugins {
|
|
`java-platform`
|
|
}
|
|
|
|
group = "de.c-otto.lndmanagej"
|
|
|
|
javaPlatform {
|
|
allowDependencies()
|
|
}
|
|
|
|
dependencies {
|
|
val springBootVersion = "3.3.5"
|
|
val grpcVersion = "1.64.0"
|
|
|
|
api(platform("org.springframework.cloud:spring-cloud-dependencies:2023.0.2"))
|
|
api(platform("org.springframework.boot:spring-boot-dependencies:$springBootVersion"))
|
|
api("io.projectreactor:reactor-core")
|
|
|
|
constraints {
|
|
api("com.google.ortools:ortools-java:9.9.3963")
|
|
api("com.google.protobuf:protobuf-gradle-plugin:0.9.4")
|
|
api("io.grpc:grpc-netty:$grpcVersion")
|
|
api("io.grpc:grpc-protobuf:$grpcVersion")
|
|
api("io.grpc:grpc-stub:$grpcVersion")
|
|
api("org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion")
|
|
api("io.vavr:vavr:0.10.4")
|
|
api("javax.annotation:javax.annotation-api:1.3.2")
|
|
}
|
|
}
|