-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
48 lines (38 loc) · 1.18 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.1.4.RELEASE")
}
}
apply plugin: "java"
apply plugin: "application"
apply plugin: "io.spring.dependency-management"
mainClassName = "io.github.netmikey.gradleversionchecker.Main"
ext {
toolingApiVersion = "5.3.1"
jansiVersion = "1.17.1"
jgitVersion = "5.3.0.201903130848-r"
}
repositories {
mavenCentral()
maven { url "https://repo.gradle.org/gradle/libs-releases" }
}
dependencyManagement {
imports {
mavenBom org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES
}
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter")
implementation("org.gradle:gradle-tooling-api:${toolingApiVersion}")
implementation("org.fusesource.jansi:jansi:${jansiVersion}")
implementation("com.fasterxml.jackson.core:jackson-databind")
implementation("org.eclipse.jgit:org.eclipse.jgit:${jgitVersion}")
implementation("org.junit.jupiter:junit-jupiter-api")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
}
test {
useJUnitPlatform()
}