mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-23 09:49:01 +00:00
17 lines
409 B
Groovy
17 lines
409 B
Groovy
plugins {
|
|
id "java"
|
|
id "org.springframework.boot"
|
|
}
|
|
|
|
repositories {
|
|
maven { url "file:${rootDir}/../docker-test-maven-repository"}
|
|
mavenCentral()
|
|
spring.mavenRepositories()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
implementation("org.webjars:jquery:3.5.0")
|
|
}
|