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.

settings.gradle 716B

12345678910111213141516171819202122232425262728
  1. rootProject.name = 'dmdirc'
  2. include 'client'
  3. include 'client:api'
  4. include 'client:bundles:com.dmdirc.events.eventbus'
  5. include 'util'
  6. include 'parser'
  7. include 'plugins'
  8. include 'parser:common'
  9. include 'parser:irc'
  10. include 'parser:xmpp'
  11. project(':client:api').name = 'api'
  12. project(':parser:common').name = 'parser-common'
  13. project(':parser:irc').name = 'parser-irc'
  14. project(':parser:xmpp').name = 'parser-xmpp'
  15. // Include all of the plugin projects
  16. project(':plugins').projectDir.eachDir() { File dir ->
  17. if (new File(dir, "src").directory) {
  18. include 'plugins:' + dir.name
  19. }
  20. }
  21. // Include all bundles
  22. new File(project(':client').projectDir, 'bundles').eachDir() { File dir ->
  23. include 'client:' + dir.name
  24. }