-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (38 loc) · 1.09 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.4'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id "org.sonarqube" version "5.0.0.4638"
}
apply from: 'gradle/jacoco.gradle'
apply from: 'gradle/junit.gradle'
apply from: 'gradle/lombok.gradle'
apply from: 'gradle/spring.gradle'
apply from: 'gradle/sonar.gradle'
allprojects {
group = 'com.chaewsstore'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
targetCompatibility = '17'
repositories {
mavenCentral()
}
bootJar { enabled = false }
jar { enabled = true }
}
subprojects {
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.sonarqube'
compileJava.options.encoding = 'UTF-8'
dependencies {
implementation 'org.hibernate:hibernate-core:6.0.0.Final'
implementation 'org.apache.commons:commons-collections4:4.4'
implementation 'com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.9.0'
}
sonar {
properties {
property 'sonar.java.binaries', "${buildDir}/classes"
}
}
}