summaryrefslogtreecommitdiffstats
path: root/poi-ooxml
diff options
context:
space:
mode:
authorDominik Stadler <centic@apache.org>2022-01-22 08:57:38 +0000
committerDominik Stadler <centic@apache.org>2022-01-22 08:57:38 +0000
commitbba249d52207799dc984efd884353aa4783c1c40 (patch)
treee19b12d36a887f8d7f9f6449de057fcdb9d65e25 /poi-ooxml
parent416562daa55414bffc1fd811a60be4399239005f (diff)
downloadpoi-bba249d52207799dc984efd884353aa4783c1c40.tar.gz
poi-bba249d52207799dc984efd884353aa4783c1c40.zip
Don't add main classes to *-test.jar files
Better to only provide them once to avoid very strange errors if they differ for some reason git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1897330 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-ooxml')
-rw-r--r--poi-ooxml/build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/poi-ooxml/build.gradle b/poi-ooxml/build.gradle
index 54bdd07456..415874a4f8 100644
--- a/poi-ooxml/build.gradle
+++ b/poi-ooxml/build.gradle
@@ -247,7 +247,7 @@ task testJar(type: Jar, dependsOn: testClasses) {
}
}
- from sourceSets.test.output + sourceSets.main.output
+ from sourceSets.test.output
manifest {
attributes('Automatic-Module-Name': MODULE_NAME, 'Multi-Release': 'true')