-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
43 lines (35 loc) · 1.1 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
buildscript {
repositories {
mavenCentral()
}
}
plugins {
id 'java'
id 'eclipse'
id 'idea'
id 'maven'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'org.springframework.boot' version '2.2.5.RELEASE'
id 'com.github.ben-manes.versions' version '0.28.0'
}
sourceCompatibility = 1.8
repositories {
jcenter()
}
dependencies {
runtime 'org.springframework.boot:spring-boot-devtools'
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'org.springframework.boot:spring-boot-starter-actuator'
compile 'com.google.guava:guava:28.2-jre'
compile 'org.glassfish.jersey.core:jersey-client:2.30'
compile 'org.glassfish.jersey.core:jersey-common:2.30'
compile 'org.glassfish.jersey.inject:jersey-hk2:2.30'
compile 'org.glassfish.jersey.media:jersey-media-json-jackson:2.30'
// java >8 need these dependencies
compile 'javax.xml.bind:jaxb-api:2.4.0-b180830.0359'
compile 'javax.activation:activation:1.1.1'
}
wrapper {
gradleVersion = '6.2.1'
distributionType = Wrapper.DistributionType.ALL
}