You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ce...@apache.org on 2022/01/22 08:57:38 UTC

svn commit: r1897330 - in /poi/trunk: poi-excelant/build.gradle poi-integration/build.gradle poi-ooxml/build.gradle poi-scratchpad/build.gradle poi/build.gradle

Author: centic
Date: Sat Jan 22 08:57:38 2022
New Revision: 1897330

URL: http://svn.apache.org/viewvc?rev=1897330&view=rev
Log:
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

Modified:
    poi/trunk/poi-excelant/build.gradle
    poi/trunk/poi-integration/build.gradle
    poi/trunk/poi-ooxml/build.gradle
    poi/trunk/poi-scratchpad/build.gradle
    poi/trunk/poi/build.gradle

Modified: poi/trunk/poi-excelant/build.gradle
URL: http://svn.apache.org/viewvc/poi/trunk/poi-excelant/build.gradle?rev=1897330&r1=1897329&r2=1897330&view=diff
==============================================================================
--- poi/trunk/poi-excelant/build.gradle (original)
+++ poi/trunk/poi-excelant/build.gradle Sat Jan 22 08:57:38 2022
@@ -154,7 +154,7 @@ task testJar(type: Jar, dependsOn: [ tes
         }
     }
 
-    from sourceSets.test.output + sourceSets.main.output
+    from sourceSets.test.output
 
     manifest {
         attributes('Automatic-Module-Name': MODULE_NAME, 'Multi-Release': 'true')

Modified: poi/trunk/poi-integration/build.gradle
URL: http://svn.apache.org/viewvc/poi/trunk/poi-integration/build.gradle?rev=1897330&r1=1897329&r2=1897330&view=diff
==============================================================================
--- poi/trunk/poi-integration/build.gradle (original)
+++ poi/trunk/poi-integration/build.gradle Sat Jan 22 08:57:38 2022
@@ -147,7 +147,7 @@ task testJar(type: Jar, dependsOn: [ tes
         }
     }
 
-    from sourceSets.test.output + sourceSets.main.output
+    from sourceSets.test.output
 
     manifest {
         attributes('Automatic-Module-Name': MODULE_NAME, 'Multi-Release': 'true')

Modified: poi/trunk/poi-ooxml/build.gradle
URL: http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/build.gradle?rev=1897330&r1=1897329&r2=1897330&view=diff
==============================================================================
--- poi/trunk/poi-ooxml/build.gradle (original)
+++ poi/trunk/poi-ooxml/build.gradle Sat Jan 22 08:57:38 2022
@@ -247,7 +247,7 @@ task testJar(type: Jar, dependsOn: testC
         }
     }
 
-    from sourceSets.test.output + sourceSets.main.output
+    from sourceSets.test.output
 
     manifest {
         attributes('Automatic-Module-Name': MODULE_NAME, 'Multi-Release': 'true')

Modified: poi/trunk/poi-scratchpad/build.gradle
URL: http://svn.apache.org/viewvc/poi/trunk/poi-scratchpad/build.gradle?rev=1897330&r1=1897329&r2=1897330&view=diff
==============================================================================
--- poi/trunk/poi-scratchpad/build.gradle (original)
+++ poi/trunk/poi-scratchpad/build.gradle Sat Jan 22 08:57:38 2022
@@ -133,7 +133,7 @@ task testJar(type: Jar, dependsOn: testC
         }
     }
 
-    from sourceSets.test.output + sourceSets.main.output
+    from sourceSets.test.output
 
     manifest {
         attributes('Automatic-Module-Name': MODULE_NAME, 'Multi-Release': 'true')

Modified: poi/trunk/poi/build.gradle
URL: http://svn.apache.org/viewvc/poi/trunk/poi/build.gradle?rev=1897330&r1=1897329&r2=1897330&view=diff
==============================================================================
--- poi/trunk/poi/build.gradle (original)
+++ poi/trunk/poi/build.gradle Sat Jan 22 08:57:38 2022
@@ -162,7 +162,7 @@ task testJar(type: Jar, dependsOn: [ tes
         }
     }
 
-    from sourceSets.test.output + sourceSets.main.output
+    from sourceSets.test.output
 
     manifest {
         attributes('Automatic-Module-Name': MODULE_NAME, 'Multi-Release': 'true')



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org