-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathbuild.gradle
86 lines (72 loc) · 2.44 KB
/
build.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
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
78
79
80
81
82
83
84
85
86
buildscript {
ext {
springBootVersion = '2.0.0.BUILD-SNAPSHOT'
}
repositories {
mavenCentral()
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'spring-boot'
jar {
baseName = 'spring-reactive-playground'
version = '0.1.0-SNAPSHOT'
}
repositories {
mavenCentral()
maven { url 'https://oss.jfrog.org/libs-snapshot' } // RxNetty 0.5.x snapshots
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
dependencyManagement {
imports {
mavenBom "org.springframework.boot.experimental:spring-boot-dependencies-web-reactive:0.1.0.BUILD-SNAPSHOT"
}
}
dependencies {
compile "io.reactivex:rxjava:1.2.1"
compile "io.reactivex:rxjava-reactive-streams:1.2.1"
compile "org.springframework.data:spring-data-commons:2.0.0.BUILD-SNAPSHOT"
compile "org.springframework.data:spring-data-mongodb:2.0.0.BUILD-SNAPSHOT"
compile "org.mongodb:mongodb-driver-reactivestreams:1.2.0"
// With Tomcat
//compile "org.springframework.boot.experimental:spring-boot-starter-web-reactive"
// With Reactor Netty
compile('org.springframework.boot.experimental:spring-boot-starter-web-reactive') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
}
compile "io.projectreactor.ipc:reactor-netty"
// With RxNetty
/*
compile('org.springframework.boot.experimental:spring-boot-starter-web-reactive') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
}
compile "io.reactivex:rxnetty-common"
compile "io.reactivex:rxnetty-http"
*/
// With Undertow
/*
compile('org.springframework.boot.experimental:spring-boot-starter-web-reactive') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
}
compile "io.undertow:undertow-core"
*/
// With Jetty
/*
compile('org.springframework.boot.experimental:spring-boot-starter-web-reactive') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
}
compile("org.eclipse.jetty:jetty-server")
compile("org.eclipse.jetty:jetty-servlet")
compile("org.eclipse.jetty:jetty-util")
compile("org.eclipse.jetty:jetty-security")
compile("org.eclipse.jetty:jetty-io")
compile("org.eclipse.jetty:jetty-http")
*/
testCompile('org.springframework.boot:spring-boot-starter-test')
}