2021-05-10 17:01:34 +00:00
|
|
|
plugins {
|
2022-09-01 20:29:06 +00:00
|
|
|
id 'org.springframework.boot' version '2.7.3'
|
|
|
|
id 'io.spring.dependency-management' version '1.0.13.RELEASE'
|
2021-05-10 17:01:34 +00:00
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'java'
|
|
|
|
|
|
|
|
group = 'org.springframework.samples'
|
2022-09-01 20:29:06 +00:00
|
|
|
version = '2.7.3'
|
2021-05-10 17:01:34 +00:00
|
|
|
sourceCompatibility = '11'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
2021-12-16 11:33:27 +00:00
|
|
|
ext.webjarsFontawesomeVersion = "4.7.0"
|
|
|
|
ext.webjarsBootstrapVersion = "5.1.3"
|
2021-05-10 17:01:34 +00:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-cache'
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
|
|
|
implementation 'javax.cache:cache-api'
|
2022-01-07 09:20:08 +00:00
|
|
|
runtimeOnly 'org.springframework.boot:spring-boot-starter-actuator'
|
2021-12-16 11:33:27 +00:00
|
|
|
runtimeOnly "org.webjars.npm:bootstrap:${webjarsBootstrapVersion}"
|
|
|
|
runtimeOnly "org.webjars.npm:font-awesome:${webjarsFontawesomeVersion}"
|
2021-05-10 17:01:34 +00:00
|
|
|
runtimeOnly 'org.ehcache:ehcache'
|
|
|
|
runtimeOnly 'com.h2database:h2'
|
|
|
|
runtimeOnly 'mysql:mysql-connector-java'
|
2021-12-16 11:33:27 +00:00
|
|
|
runtimeOnly 'org.postgresql:postgresql'
|
2021-05-10 17:01:34 +00:00
|
|
|
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
|
|
}
|
|
|
|
|
2022-09-01 20:29:06 +00:00
|
|
|
tasks.named('test') {
|
2021-05-10 17:01:34 +00:00
|
|
|
useJUnitPlatform()
|
|
|
|
}
|