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

12345678910
  1. rootProject.name = 'poi'
  2. include 'main', 'ooxml', 'excelant', 'examples', 'scratchpad', 'integrationtest'
  3. project(':main').projectDir = new File(settingsDir, 'build/main')
  4. project(':ooxml').projectDir = new File(settingsDir, 'build/ooxml')
  5. project(':excelant').projectDir = new File(settingsDir, 'build/excelant')
  6. project(':examples').projectDir = new File(settingsDir, 'build/examples')
  7. project(':scratchpad').projectDir = new File(settingsDir, 'build/scratchpad')
  8. project(':integrationtest').projectDir = new File(settingsDir, 'build/integrationtest')