-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
35 lines (29 loc) · 1.29 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
plugins {
id 'org.springframework.boot' version '3.0.5'
id 'io.spring.dependency-management' version '1.1.0'
id 'java'
}
group = 'at.schrer'
version = rootProject.version
sourceCompatibility = '17'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web:3.0.5'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:3.0.5'
implementation 'org.springframework.boot:spring-boot-starter-validation:3.0.5'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:3.0.5'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor:3.0.5'
//implementation group: 'org.hibernate.search', name: 'hibernate-search-mapper-orm', version: '6.1.8.Final'
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.4'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.11.0'
runtimeOnly group: 'com.h2database', name: 'h2', version: '2.1.214'
developmentOnly('org.springframework.boot:spring-boot-devtools:3.0.5')
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.0.5'
testImplementation 'junit:junit:4.13.1'
}
tasks.named('test') {
useJUnitPlatform()
}