-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (32 loc) · 825 Bytes
/
build.gradle
File metadata and controls
39 lines (32 loc) · 825 Bytes
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
buildscript {
repositories {
jcenter()
mavenCentral()
maven { url "http://repo.spring.io/release" }
maven { url "http://repo.spring.io/snapshot" }
}
dependencies {
classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.4.3.RELEASE'
}
}
group 'lesp'
version '0.1.0'
task wrapper(type: Wrapper) {
gradleVersion = '2.14.1'
}
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
jar {
baseName = 'spring-reactive-example'
version = '0.1.0'
}
repositories {
jcenter()
mavenCentral()
maven { url "http://repo.spring.io/release" }
maven { url "http://repo.spring.io/snapshot" }
}
dependencies {
compile "org.springframework.boot:spring-boot-starter-web:1.4.3.RELEASE"
compile 'io.reactivex.rxjava2:rxjava:2.0.4'
}