-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
39 lines (32 loc) · 870 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
27
28
29
30
31
32
33
34
35
36
37
38
39
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.2.1.RELEASE")
}
}
plugins {
id 'java'
id 'eclipse'
id 'idea'
id "org.springframework.boot" version "2.2.1.RELEASE"
id "io.spring.dependency-management" version "1.0.8.RELEASE"
// id "nebula.lint" version "16.0.2"
}
bootJar {
baseName = 'gs-spring-boot'
version = '0.1.0'
}
repositories {
mavenCentral()
}
//gradleLint.rules = ['all-dependency']
sourceCompatibility = 11
targetCompatibility = 11
dependencies {
implementation group: 'com.google.code.findbugs', name: 'annotations', version: '3.0.1'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '2.2.1.RELEASE'
testImplementation("junit:junit")
}