
Create a small Groovy script that can be used in `settings.gradle` files to extend `repositories` to support the various maven repositories required for our build. See gh-42333
18 lines
359 B
Groovy
18 lines
359 B
Groovy
plugins {
|
|
id "java"
|
|
id "org.springframework.boot"
|
|
}
|
|
|
|
apply plugin: "io.spring.dependency-management"
|
|
|
|
repositories {
|
|
maven { url "file:${rootDir}/../docker-test-maven-repository"}
|
|
mavenCentral()
|
|
spring.mavenRepositories()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
implementation("org.webjars:jquery:3.5.0")
|
|
}
|