diff options
author | Vijay Venkatesh Kumar <vv770d@att.com> | 2020-01-08 17:13:22 +0000 |
---|---|---|
committer | Vijay Venkatesh Kumar <vv770d@att.com> | 2020-01-08 17:24:31 +0000 |
commit | 9b30373a6f1b1bc123250a9a598bc7a164b7e9b7 (patch) | |
tree | c1038b6a3c94582dbf8ea7f7dfeb1753832997e5 /mod/bpgenerator/src/assembly/dep.xml | |
parent | 77900bb3097491cd9fca964c111ea70724e53989 (diff) |
bp-gen code clone from cli repo
dcaegen2/platform/mod will host all design component code
cli/component-json-schemas and cli/dcae-cli already moved
original cli repo will be marked as RO after this is merged
Change-Id: Ie88dbd273d218c89a95afe0e58742a948c04eae5
Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com>
Issue-ID: DCAEGEN2-1852
Issue-ID: DCAEGEN2-1860
Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com>
Diffstat (limited to 'mod/bpgenerator/src/assembly/dep.xml')
-rw-r--r-- | mod/bpgenerator/src/assembly/dep.xml | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/mod/bpgenerator/src/assembly/dep.xml b/mod/bpgenerator/src/assembly/dep.xml new file mode 100644 index 0000000..daf6771 --- /dev/null +++ b/mod/bpgenerator/src/assembly/dep.xml @@ -0,0 +1,52 @@ +<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> + <id>bundle</id> + <formats> + <format>tar.gz</format> + </formats> + <files> + <file> + <source>target/${project.artifactId}-${project.version}.jar</source> + <outputDirectory>lib</outputDirectory> + </file> + </files> + <fileSets> +<!-- + <fileSet> + <directory>src/main/scripts</directory> + <outputDirectory>bin</outputDirectory> + <includes> + <include>**/*.sh</include> + </includes> + <fileMode>0755</fileMode> + </fileSet> + <fileSet> + <directory>etc</directory> + <outputDirectory>conf</outputDirectory> + </fileSet> +--> + <fileSet> + <!-- src/main/scripts may be a better choice because src/main/resources is packaged by maven into the jar --> + <directory>src/main/resources/bin</directory> + <outputDirectory>bin</outputDirectory> + <includes> + <include>**/*.*</include> + </includes> + <fileMode>0755</fileMode> + </fileSet> + <fileSet> + <directory>src/main/resources/conf</directory> + <outputDirectory>conf</outputDirectory> + </fileSet> + + </fileSets> + <dependencySets> + <dependencySet> + <includes> + <include>*:jar</include> + </includes> + <outputDirectory>lib</outputDirectory> + </dependencySet> + </dependencySets> +</assembly> |