]> git.argeo.org Git - gpl/argeo-slc.git/blob - dist/org.argeo.slc.sdk/src/assembly/dist.xml
f9ffc4cb678fe798e3705c06e5897fcddd66b505
[gpl/argeo-slc.git] / dist / org.argeo.slc.sdk / src / assembly / dist.xml
1 <!--
2
3 Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16
17 -->
18
19 <assembly
20 xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
21 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
23 <id>dist</id>
24 <baseDirectory>slc</baseDirectory>
25 <formats>
26 <format>zip</format>
27 </formats>
28 <fileSets>
29 <fileSet>
30 <directory>target/base</directory>
31 <outputDirectory></outputDirectory>
32 <includes>
33 <include>**</include>
34 </includes>
35 </fileSet>
36 </fileSets>
37 <dependencySets>
38 <dependencySet>
39 <unpack>false</unpack>
40 <outputFileNameMapping>${artifact.artifactId}-${artifact.baseVersion}.${artifact.extension}
41 </outputFileNameMapping>
42 <outputDirectory>lib</outputDirectory>
43 <includes>
44 <include>*:jar</include>
45 </includes>
46 </dependencySet>
47 <dependencySet>
48 <unpack>true</unpack>
49 <includes>
50 <include>org.argeo.slc.runtime:org.argeo.slc.launcher:tar.gz:base
51 </include>
52 </includes>
53 </dependencySet>
54 </dependencySets>
55 </assembly>