settings.gradle.kts 681 B

12345678910111213141516171819202122232425262728293031323334
  1. rootProject.name = "AutoDev-Intellij"
  2. enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
  3. include("core");
  4. include(
  5. "pycharm",
  6. "java",
  7. "kotlin",
  8. "javascript",
  9. "goland",
  10. "rust",
  11. // "csharp",
  12. "cpp",
  13. "scala",
  14. )
  15. include(
  16. "local-bundle",
  17. "exts:ext-database",
  18. // since JetBrains also call `android.jar`, so we rename it to `ext-android`
  19. "exts:ext-android",
  20. "exts:ext-harmonyos",
  21. "exts:ext-terminal",
  22. // git4idea is the git plugin for IntelliJ IDEA, so we rename it to `exts-git`
  23. "exts:ext-git",
  24. // for http test
  25. "exts:ext-http-client",
  26. // the Input Language support for AutoDev
  27. "exts:devins-lang"
  28. )