-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
47 lines (40 loc) · 1.89 KB
/
build.gradle.kts
File metadata and controls
47 lines (40 loc) · 1.89 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
plugins {
id("org.openbase.bco")
id("org.springframework.boot")
id("io.spring.dependency-management") version "1.1.2"
}
dependencies {
api(project(":bco.dal.remote"))
api("org.springframework.boot:spring-boot-starter-webflux:_")
api("com.graphql-java-kickstart:graphql-spring-boot-starter:_") {
exclude(group = "org.springframework.boot", module = "spring-boot-starter-tomcat")
}
api("org.springframework.boot:spring-boot-starter-jetty:_")
api("org.springframework.boot:spring-boot-starter-websocket:_") {
exclude(group = "org.springframework.boot", module = "spring-boot-starter-tomcat")
}
api(Spring.boot.webflux)
api("org.springframework:spring-webmvc:_")
api("org.eclipse.jetty:jetty-server:11.0.14")
api("jakarta.servlet:jakarta.servlet-api:6.0.0")
implementation("org.springframework.boot:spring-boot-starter-actuator:_")
api(rootProject.files("lib/external/rejoiner-0.5.0-bco.jar"))
api(rootProject.files("lib/external/rejoiner-guice-0.5.0-bco.jar"))
// disabled since rejoiner is linked locally.
// api("com.google.api.graphql:rejoiner-guice:_") {
// exclude(group = "com.google.inject", module = "guice")
// exclude(group = "com.graphql-java", module = "graphql-java")
// exclude(group = "com.google.inject.extensions", module = "guice-multibindings")
// }
// api("com.google.api.graphql:rejoiner:_") {
// exclude(group = "com.google.inject", module = "guice")
// exclude(group = "com.graphql-java", module = "graphql-java")
// exclude(group = "com.google.inject.extensions", module = "guice-multibindings")
// }
api("com.google.inject.extensions:guice-multibindings:_")
api("com.google.inject:guice:_")
api("com.google.guava:guava:_")
api("net.javacrumbs.future-converter:future-converter-java8-guava:_")
api(ReactiveX.rxJava2)
}
description = "BCO GraphQL API"