-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (25 loc) · 777 Bytes
/
Copy pathbuild.gradle
File metadata and controls
30 lines (25 loc) · 777 Bytes
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
plugins {
id 'checkstyle'
id 'io.spring.dependency-management' version '1.1.7'
id 'org.springframework.boot' version '4.1.0'
id 'com.github.spotbugs' version '6.5.6'
}
allprojects {
group = 'io.starter'
version = '1.0.0-SNAPSHOT'
}
subprojects { project ->
apply plugin: 'java'
apply plugin: 'checkstyle'
apply plugin: 'com.github.spotbugs'
if (project.path != ':modules:springless-integration-testng') {
apply plugin: 'io.spring.dependency-management'
apply plugin: 'org.springframework.boot'
}
}
apply from: 'gradle/compilation.gradle'
apply from: 'gradle/code-analysis.gradle'
apply from: 'gradle/dependencies.gradle'
apply from: 'gradle/tests.gradle'
apply from: 'gradle/aspectj.gradle'
defaultTasks 'check'