-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
26 lines (21 loc) · 909 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
plugins {
id 'org.springframework.boot' version '2.1.6.RELEASE'
id 'java'
}
apply plugin: 'io.spring.dependency-management'
group = 'com.cegeka'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind'
compile group: 'com.google.guava', name: 'guava', version: '28.0-jre'
compile group: 'org.eclipse.jgit', name: 'org.eclipse.jgit', version: '5.4.0.201906121030-r'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testCompile group: 'org.assertj', name: 'assertj-core', version: '3.12.2'
testCompile group: 'org.powermock', name: 'powermock-module-junit4', version: '2.0.2'
}