-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
46 lines (34 loc) · 1.07 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.2.2.RELEASE'
}
apply plugin: 'io.spring.dependency-management'
group = 'tsypanov'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 13
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
ext {
jmhVersion = '1.22'
p6spyVersion= '3.8.3-SNAPSHOT'
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation "p6spy:p6spy:${p6spyVersion}"
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
compileOnly 'org.projectlombok:lombok'
implementation "org.openjdk.jmh:jmh-core:${jmhVersion}"
compileOnly "org.openjdk.jmh:jmh-generator-annprocess:${jmhVersion}"
annotationProcessor "org.openjdk.jmh:jmh-generator-annprocess:${jmhVersion}"
runtimeOnly 'com.h2database:h2'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'commons-io:commons-io:2.6'
testImplementation 'org.junit.jupiter:junit-jupiter:5.4.2'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}