26 lines
932 B
XML
26 lines
932 B
XML
<!--
|
|
Copyright (c) 2018-2018 Red Hat, Inc.
|
|
This program and the accompanying materials
|
|
are made available under the terms of the Eclipse Public License v2.0
|
|
which is available at http://www.eclipse.org/legal/epl-2.0.html
|
|
|
|
SPDX-License-Identifier: EPL-2.0
|
|
|
|
Contributors:
|
|
Red Hat, Inc. - initial API and implementation
|
|
-->
|
|
<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>workspace-loader-zip</id>
|
|
<formats>
|
|
<format>zip</format>
|
|
</formats>
|
|
<includeBaseDirectory>false</includeBaseDirectory>
|
|
<fileSets>
|
|
<fileSet>
|
|
<directory>${project.basedir}/target/dist</directory>
|
|
<outputDirectory>/loader</outputDirectory>
|
|
</fileSet>
|
|
</fileSets>
|
|
</assembly>
|