poi/settings.gradle
Dominik Stadler 41e1e9ffb8 Add initial compile steps with a simple multi-project setup to build.gradle
Adjust some tests to make them run fine in the Gradle build as well

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1763816 13f79535-47bb-0310-9956-ffa450edef68
2016-10-07 19:33:11 +00:00

11 regels
556 B
Groovy

rootProject.name = 'poi'
include 'main', 'ooxml', 'excelant', 'examples', 'scratchpad', 'integrationtest'
project(':main').projectDir = new File(settingsDir, 'build/main')
project(':ooxml').projectDir = new File(settingsDir, 'build/ooxml')
project(':excelant').projectDir = new File(settingsDir, 'build/excelant')
project(':examples').projectDir = new File(settingsDir, 'build/examples')
project(':scratchpad').projectDir = new File(settingsDir, 'build/scratchpad')
project(':integrationtest').projectDir = new File(settingsDir, 'build/integrationtest')