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 315B

123456789101112131415
  1. rootProject.name = 'dmdirc'
  2. include 'client'
  3. include 'util'
  4. include 'parser'
  5. include 'plugins'
  6. include 'parser:common'
  7. include 'parser:irc'
  8. // Include all of the plugin projects
  9. project(':plugins').projectDir.eachDir() { File dir ->
  10. if (new File(dir, "src").directory) {
  11. include 'plugins:' + dir.name
  12. }
  13. }