9b908a1994
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
11 lines
556 B
Groovy
11 lines
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')
|