I want to include just one artifact from the dependencies in the the result
jar, so my assembly descriptor:
<dependencySet>
<outputDirectory>/</outputDirectory>
<includes>
<include>org.example:test:zip:1.0.0</include>
</includes>
</dependencySet>
In the result jar I am able to see only example-test.zip artifact, no
project artifact. Looks like useProjectArtifact doesn't work (default value
is true).
Also I have tried to add project artifact in dependencySet but still have
no success with it.
Please share your throughs on this.