blob: 8839845359d1b46afe413a7c6c1a6f17ece3eb90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
<id>onap_csar</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>${project.build.directory}/csar</directory>
<outputDirectory></outputDirectory>
</fileSet>
</fileSets>
</assembly>
|