ZIP package not created for refine-groovy extension

Hi @antonin_d ,
I'm not seeing the ZIP package being created under /target folder, even after

mvn package

I've followed what you did with refine-js and started my refine-groovy project with the sample-extension template. Any hints on what I might have missed? (I'm wondering also, worried, that groovy-all might not be included as well, since it needs a <type>pom</type> as they describe in docs https://groovy.apache.org/download.html#buildtools

<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>x.y.z</version>
<type>pom</type> <!-- required JUST since Groovy 2.5.0 -->

Yes it's something that's missing from the Maven setup, see:

You can take example from here:

which requires the src/assembly/extension.xml file

1 Like