diff options
author | Dominik Stadler <centic@apache.org> | 2021-04-08 20:10:53 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2021-04-08 20:10:53 +0000 |
commit | 30d8d1773596008d8333c282e420f19d8215d44a (patch) | |
tree | 769cf91a3dae169b5c0886436397cca8a3599819 /build.gradle | |
parent | 329ae952d27814ebbc6138d32b6b228dc1da4ca9 (diff) | |
download | poi-30d8d1773596008d8333c282e420f19d8215d44a.tar.gz poi-30d8d1773596008d8333c282e420f19d8215d44a.zip |
Adjust for the new source-directories in some more places
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1888536 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/build.gradle b/build.gradle index 3756158663..a85f346ee2 100644 --- a/build.gradle +++ b/build.gradle @@ -331,33 +331,36 @@ rat { inputDir.set(file(".")) // include all directories which contain files that are included in releases - includes.add("examples/**") - includes.add("excelant/**") + includes.add("poi-examples/**") + includes.add("poi-excelant/**") includes.add("poi-integration/**") includes.add("legal/**") - includes.add("main/**") + includes.add("poi/**") includes.add("maven/**") - includes.add("ooxml/**") - includes.add("ooxml-schema/**") + includes.add("poi-ooxml/**") + includes.add("poi-ooxml-full/**") + includes.add("poi-ooxml-lite/**") + includes.add("poi-ooxml-lite-agent/**") //includes.add("osgi/**") - includes.add("scratchpad/**") + includes.add("poi-scratchpad/**") includes.add("src/**") //includes.add("sonar/**") includes.add("build.*") // List of Gradle exclude directives, defaults to ['**/.gradle/**'] //excludes.add("main/java/org/apache/poi/**/*-chart-data.txt") + includes.add("build.javacheck.xml") excludes.add("**/build/**") excludes.add("**/out/**") excludes.add("**/*.iml") excludes.add("**/*.log") excludes.add("**/main/java/org/apache/poi/**/*-chart-data.txt") - excludes.add("main/src/main/resources/org/apache/poi/sl/draw/geom/presetShapeDefinitions.xml") - excludes.add("ooxml/src/main/resources/org/apache/poi/xslf/usermodel/notesMaster.xml") - excludes.add("ooxml/src/main/resources/org/apache/poi/xssf/usermodel/presetTableStyles.xml") - excludes.add("ooxml-schema/src/main/xmlschema/org/apache/poi/schemas/XAdES*.xsd") - excludes.add("ooxml-schema/src/main/xmlschema/org/apache/poi/schemas/xmldsig-core-schema.xsd") - excludes.add("ooxml-schema/src/main/xmlschema/org/apache/poi/xdgf/visio.xsd") + excludes.add("poi/src/main/resources/org/apache/poi/sl/draw/geom/presetShapeDefinitions.xml") + excludes.add("poi-ooxml/src/main/resources/org/apache/poi/xslf/usermodel/notesMaster.xml") + excludes.add("poi-ooxml/src/main/resources/org/apache/poi/xssf/usermodel/presetTableStyles.xml") + excludes.add("poi-ooxml-full/src/main/xmlschema/org/apache/poi/schemas/XAdES*.xsd") + excludes.add("poi-ooxml-full/src/main/xmlschema/org/apache/poi/schemas/xmldsig-core-schema.xsd") + excludes.add("poi-ooxml-full/src/main/xmlschema/org/apache/poi/xdgf/visio.xsd") /* <exclude name="documentation/*.txt" /> <exclude name="documentation/content/xdocs/dtd/" /> |