neilcsmith-net commented on PR #5939:
URL: https://github.com/apache/netbeans/pull/5939#issuecomment-1545927560

   @ebarboni well, we could also change the extraction task in `maven.embedder` 
to run the test?
   
   ```xml
       <target name="-release.files" depends="projectized.-release.files">
           <mkdir dir="${cluster}/maven"/>
           <unzip src="external/${bundled.maven}-bin.zip" 
dest="${cluster}/maven">
               <mapper type="glob" from="${bundled.maven}/*" to="*"/>
           </unzip>
           <taskdef name="checkjarssha1" 
classname="org.netbeans.nbbuild.extlibs.CheckEmbeddedBinaries" 
classpath="${nbantext.jar}"/>
           <mkdir dir="build/tmptesting"/>
           <unzip src="external/${bundled.maven}-bin.zip" 
dest="build/tmptesting">
               <patternset>
                   <include name="**/*.jar"/>
               </patternset>
               <mapper type="flatten"/>
           </unzip>
           <checkjarssha1 dir="build/tmptesting" 
shalist="external/binariesembedded-list" />
           <delete dir="build/tmptesting"/>
       </target>
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to