Elasticsearchの練習リポジトリ
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

16 行
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"