-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (43 loc) · 1.66 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
ext {
mapStructVersion = '1.3.1.Final'
}
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.1.6.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
repositories {
mavenCentral()
}
group 'com.hcg.mastermicroservices'
version '1.0'
sourceCompatibility = 1.8
dependencies {
compile(
[group: 'org.springframework.boot', name: 'spring-boot-starter-actuator'],
[group: 'org.springframework.boot', name: 'spring-boot-starter-web'],
[group: 'org.springframework.boot', name: 'spring-boot-starter-security'],
[group: 'org.mapstruct', name: 'mapstruct', version: mapStructVersion],
[group: 'org.mapstruct', name: 'mapstruct-jdk8', version: mapStructVersion],
[group: 'org.mapstruct', name: 'mapstruct-processor', version: mapStructVersion],
[group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa'],
[group: 'org.postgresql', name: 'postgresql', version: '42.2.8'],
[group: 'org.springframework.boot', name: 'spring-boot-starter-cache', version: '2.0.0.RELEASE'],
[group: 'org.springframework.boot', name: 'spring-boot-configuration-processor'],
)
compileOnly(
[group: 'org.mapstruct', name: 'mapstruct-processor', version: mapStructVersion],
)
testCompile(
[group: 'junit', name: 'junit', version: '4.12'],
[group: 'org.springframework.boot', name: 'spring-boot-starter-test'],
)
}