1
0
Mirror von https://github.com/apache/poi.git synchronisiert 2024-08-29 17:56:06 +02:00
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 Zeilen
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')