diff options
author | vrvarma <vikas.varma@att.com> | 2020-03-23 12:42:03 -0400 |
---|---|---|
committer | vrvarma <vikas.varma@att.com> | 2020-03-23 12:42:20 -0400 |
commit | 19515ef4efae6452cfe1474ce226928fbdb872ed (patch) | |
tree | 840c3561db35d778d7c551bd7810ca07637a536c /conductor/docker/assembly | |
parent | 3223debecc9f305c1ab43441a38c9a017ccfd431 (diff) |
Fix has docker build to conform to self-release
Change-Id: I27671db832cb85517bd7f7a0c587a9a02c2eec61
Signed-off-by: vrvarma <vikas.varma@att.com>
Issue-ID: OPTFRA-722
Diffstat (limited to 'conductor/docker/assembly')
-rw-r--r-- | conductor/docker/assembly/has-files.xml | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/conductor/docker/assembly/has-files.xml b/conductor/docker/assembly/has-files.xml new file mode 100644 index 0000000..9590740 --- /dev/null +++ b/conductor/docker/assembly/has-files.xml @@ -0,0 +1,56 @@ +<!-- + Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); you may + not use this file except in compliance with the License. You may obtain + a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + License for the specific language governing permissions and limitations + under the License. + +--> + +<!-- + Copyright (c) 2018 Intel Corporation. All rights reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); you may + not use this file except in compliance with the License. You may obtain + a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + License for the specific language governing permissions and limitations + under the License. +--> + +<assembly + xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1 http://maven.apache.org/xsd/assembly-1.1.1.xsd"> + <id>has-files</id> + + <formats> + <format>tar.gz</format> + </formats> + <includeBaseDirectory>false</includeBaseDirectory> + + + <fileSets> + <fileSet> + <includes> + <include>${project.build.finalName}.zip</include> + </includes> + <directory>${project.build.directory}</directory> + <outputDirectory>/</outputDirectory> + </fileSet> + + </fileSets> +</assembly> |