-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (35 loc) · 1.25 KB
/
build.gradle
File metadata and controls
42 lines (35 loc) · 1.25 KB
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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.1.7.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group = 'org.salesforce.insights'
version = '0.1.0'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencyManagement { (1)
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:Greenwich.RELEASE"
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'com.google.guava:guava:23.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
testImplementation 'org.junit.platform:junit-platform-launcher:1.3.+'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
compile group: 'org.slf4j', name:'slf4j-api', version: '1.7.2'
compile "org.springframework.cloud:spring-cloud-starter-sleuth"
compile 'io.sentry:sentry:1.7.26'
}