-
Notifications
You must be signed in to change notification settings - Fork 24
/
build.gradle
60 lines (52 loc) · 1.37 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
49
50
51
52
53
54
55
56
57
58
59
60
import org.springframework.boot.gradle.plugin.SpringBootPlugin
buildscript {
repositories {
mavenCentral()
mavenLocal()
maven {
url "https://repo.spring.io/milestone/"
}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.2.6.RELEASE")
classpath("org.hibernate.build.gradle:gradle-maven-publish-auth:2.0.1")
}
}
allprojects {
group = "com.navercorp"
version "1.0.0-SNAPSHOT"
}
subprojects {
apply plugin: "java"
apply plugin: "idea"
apply plugin: "io.spring.dependency-management"
apply plugin: "maven"
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
repositories {
mavenCentral()
maven {
url "https://repo.spring.io/milestone/"
}
maven {
name "navercorp.release"
url "http://repo.navercorp.com/maven2/"
}
maven {
name "navercorp.snapshot"
url "http://repo.navercorp.com/m2-snapshot-repository/"
}
}
dependencies {
compileOnly("com.google.code.findbugs:jsr305:3.0.2")
testCompile("org.assertj:assertj-core")
}
dependencyManagement {
imports {
mavenBom SpringBootPlugin.BOM_COORDINATES
}
}
test {
useJUnitPlatform()
}
}