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