You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
568 B
30 lines
568 B
plugins { |
|
java |
|
id("org.springframework.boot") version "{gradle-project-version}" |
|
} |
|
|
|
// tag::configure-platform[] |
|
dependencies { |
|
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES)) |
|
} |
|
// end::configure-platform[] |
|
|
|
dependencies { |
|
implementation("org.springframework.boot:spring-boot-starter") |
|
} |
|
|
|
repositories { |
|
maven { |
|
url = uri("file:repository") |
|
} |
|
} |
|
|
|
configurations.all { |
|
resolutionStrategy { |
|
eachDependency { |
|
if (requested.group == "org.springframework.boot") { |
|
useVersion("TEST-SNAPSHOT") |
|
} |
|
} |
|
} |
|
}
|
|
|