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

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')