mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-04-24 11:22:48 +00:00

In order to improve efficiency (see spring-projects/spring-framework#27619) and allow native image compatibility, this commit uses WebJars versioned URLs which are supported out of the box on Spring Boot via /META-INF/resources default resource location configuration, removing the need to use webjars-locator-core dependency and WebJarsResourceResolver. I have been able to measure a consistent 5% startup time improvement on the JVM with that simple change on my local machine.
40 lines
1.3 KiB
Groovy
40 lines
1.3 KiB
Groovy
plugins {
|
|
id 'org.springframework.boot' version '2.7.3'
|
|
id 'io.spring.dependency-management' version '1.0.13.RELEASE'
|
|
id 'java'
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
|
|
group = 'org.springframework.samples'
|
|
version = '2.7.3'
|
|
sourceCompatibility = '11'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
ext.webjarsFontawesomeVersion = "4.7.0"
|
|
ext.webjarsBootstrapVersion = "5.1.3"
|
|
|
|
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'
|
|
runtimeOnly 'org.springframework.boot:spring-boot-starter-actuator'
|
|
runtimeOnly "org.webjars.npm:bootstrap:${webjarsBootstrapVersion}"
|
|
runtimeOnly "org.webjars.npm:font-awesome:${webjarsFontawesomeVersion}"
|
|
runtimeOnly 'org.ehcache:ehcache'
|
|
runtimeOnly 'com.h2database:h2'
|
|
runtimeOnly 'mysql:mysql-connector-java'
|
|
runtimeOnly 'org.postgresql:postgresql'
|
|
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
}
|
|
|
|
tasks.named('test') {
|
|
useJUnitPlatform()
|
|
}
|