-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathbuild.gradle
39 lines (32 loc) · 894 Bytes
/
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
group 'com.example'
version '0.0.1-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
subprojects {
apply plugin: 'java'
repositories {
mavenCentral()
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
dependencies {
implementation platform('io.projectreactor:reactor-bom:Dysprosium-RELEASE')
implementation platform('io.micrometer:micrometer-bom:1.3.2')
implementation platform('io.dropwizard:dropwizard-bom:2.0.0')
}
}
ext {
embeddedMongoVersion = '2.2.0'
mongoReactiveDriverVersion = '1.10.0'
jacksonVersion = '2.9.7'
socketioVersion = '1.0.0'
rxJava1Version = '1.3.4'
powerMockVersion = '2.0.0'
guavaVersion = '27.0.1-jre'
diSpecVersion = '1'
}