I have a project with structure like this

I am currently attempting to create a compressed zip folder named "wso2mi.zip" and my goal is to include all files and directories that are contained within the "wso2mi" folder. For this purpose, I have utilized the following code in pom.xml file
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>create-zip</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<appendAssemblyId>false</appendAssemblyId>
<finalName>wso2mi</finalName>
<includeBaseDirectory>false</includeBaseDirectory>
<formats>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<directory>${project.basedir}/wso2mi</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>**/*</include>
</includes>
</fileSet>
</fileSets>
</configuration>
</execution>
</executions>
</plugin>
Although I am attempting to create a zip folder named wso2mi.zip and include everything within the wso2mi folder by utilizing the code snippet mentioned above, the resulting zip folder does not contain anything apart from a few Maven files. Could you please clarify what is incorrect with the provided code?
Solve this issue with maven assembly plugin . Created a folder assembly inside the project and under assembly folder created a zip.xml file with the following contents.
in pom.xml file added a plugin