Elasticsearchの練習リポジトリ
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.

16 lines
411B

  1. pluginManagement {
  2. repositories {
  3. maven { url = uri("https://repo.spring.io/milestone") }
  4. maven { url = uri("https://repo.spring.io/snapshot") }
  5. gradlePluginPortal()
  6. }
  7. resolutionStrategy {
  8. eachPlugin {
  9. if (requested.id.id == "org.springframework.boot") {
  10. useModule("org.springframework.boot:spring-boot-gradle-plugin:${requested.version}")
  11. }
  12. }
  13. }
  14. }
  15. rootProject.name = "elasticsearchdemo"