Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | Licensed to the Apache Software Foundation (ASF) under one or more |
| 4 | contributor license agreements. See the NOTICE file distributed with |
| 5 | this work for additional information regarding copyright ownership. |
| 6 | The ASF licenses this file to You under the Apache License, Version 2.0 |
| 7 | (the "License"); you may not use this file except in compliance with |
| 8 | the License. You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | --> |
| 18 | <assembly> |
| 19 | <id></id> <!-- intentionally left blank -> http://jira.codehaus.org/browse/MASSEMBLY-301 --> |
| 20 | <formats> |
| 21 | <format>tar.gz</format> |
| 22 | </formats> |
| 23 | <fileSets> |
| 24 | |
| 25 | <!-- Copy license and other files from root --> |
| 26 | <fileSet> |
| 27 | <directory>..</directory> |
| 28 | <outputDirectory>/</outputDirectory> |
| 29 | <includes> |
Guillaume Nodet | 91a52c0 | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 30 | <include>README</include> |
| 31 | <include>RELEASE*</include> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 32 | </includes> |
| 33 | <lineEnding>unix</lineEnding> |
| 34 | </fileSet> |
| 35 | |
| 36 | <!-- Copy over everything that needs to get unix line endings --> |
| 37 | <fileSet> |
| 38 | <directory>src/main/distribution/text</directory> |
| 39 | <outputDirectory>/</outputDirectory> |
| 40 | <lineEnding>unix</lineEnding> |
| 41 | </fileSet> |
| 42 | <fileSet> |
| 43 | <directory>src/main/distribution/unix-text</directory> |
| 44 | <outputDirectory>/</outputDirectory> |
| 45 | <lineEnding>unix</lineEnding> |
| 46 | </fileSet> |
| 47 | <fileSet> |
Guillaume Nodet | 5cd0379 | 2009-09-08 18:37:13 +0000 | [diff] [blame] | 48 | <directory>target/classes/bin</directory> |
| 49 | <outputDirectory>/bin/</outputDirectory> |
| 50 | <lineEnding>unix</lineEnding> |
| 51 | <fileMode>0755</fileMode> |
| 52 | <includes> |
| 53 | <include>admin</include> |
| 54 | </includes> |
| 55 | </fileSet> |
| 56 | <fileSet> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 57 | <directory>target/classes/etc</directory> |
| 58 | <outputDirectory>/etc/</outputDirectory> |
| 59 | <lineEnding>unix</lineEnding> |
| 60 | </fileSet> |
| 61 | |
| 62 | <!-- Copy over the examples --> |
| 63 | <fileSet> |
Guillaume Nodet | 6d8f91d | 2009-11-27 16:38:37 +0000 | [diff] [blame] | 64 | <directory>target/classes/demos</directory> |
| 65 | <outputDirectory>/demos/</outputDirectory> |
| 66 | <lineEnding>unix</lineEnding> |
| 67 | </fileSet> |
| 68 | <fileSet> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 69 | <directory>../demos</directory> |
| 70 | <outputDirectory>/demos/</outputDirectory> |
| 71 | <lineEnding>unix</lineEnding> |
| 72 | <excludes> |
| 73 | <exclude>**/target/**</exclude> |
| 74 | </excludes> |
| 75 | </fileSet> |
| 76 | |
| 77 | <!-- Copy over files that should not get the line endings converted --> |
| 78 | <fileSet> |
| 79 | <directory>src/main/distribution/binary</directory> |
| 80 | <outputDirectory>/</outputDirectory> |
| 81 | </fileSet> |
| 82 | |
| 83 | <!-- Copy over the files that should not get the line endings converted but need to be chmod to 755 --> |
| 84 | <fileSet> |
| 85 | <directory>src/main/distribution/unix-binary</directory> |
| 86 | <outputDirectory>/</outputDirectory> |
| 87 | <fileMode>0755</fileMode> |
| 88 | </fileSet> |
| 89 | |
| 90 | <!-- Copy over the files that need unix line endings and also chmod to 755 --> |
| 91 | <fileSet> |
| 92 | <directory>src/main/distribution/unix-shell</directory> |
| 93 | <outputDirectory>/</outputDirectory> |
| 94 | <lineEnding>unix</lineEnding> |
| 95 | <fileMode>0755</fileMode> |
| 96 | </fileSet> |
| 97 | |
| 98 | <!-- Copy over jar files --> |
| 99 | <fileSet> |
| 100 | <directory>target/dependencies</directory> |
Guillaume Nodet | 225b799 | 2009-10-15 21:01:09 +0000 | [diff] [blame] | 101 | <outputDirectory>/</outputDirectory> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 102 | </fileSet> |
| 103 | |
| 104 | </fileSets> |
| 105 | |
| 106 | <files> |
| 107 | <file> |
Guillaume Nodet | 91a52c0 | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 108 | <source>${basedir}/../LICENSE</source> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 109 | <outputDirectory>/</outputDirectory> |
Guillaume Nodet | 91a52c0 | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 110 | <destName>LICENSE</destName> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 111 | <fileMode>0644</fileMode> |
| 112 | <lineEnding>unix</lineEnding> |
| 113 | </file> |
| 114 | <file> |
Guillaume Nodet | 91a52c0 | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 115 | <source>${basedir}/NOTICE</source> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 116 | <outputDirectory>/</outputDirectory> |
Guillaume Nodet | 91a52c0 | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 117 | <destName>NOTICE</destName> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 118 | <fileMode>0644</fileMode> |
| 119 | <lineEnding>unix</lineEnding> |
| 120 | </file> |
| 121 | <file> |
| 122 | <source>${basedir}/target/classes/features.xml</source> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 123 | <outputDirectory>/system/org/apache/felix/karaf/apache-felix-karaf/${version}</outputDirectory> |
| 124 | <destName>apache-felix-karaf-${version}-features.xml</destName> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 125 | <fileMode>0644</fileMode> |
| 126 | <lineEnding>unix</lineEnding> |
| 127 | </file> |
| 128 | </files> |
| 129 | |
| 130 | <dependencySets> |
| 131 | |
| 132 | <dependencySet> |
| 133 | <outputDirectory>/system</outputDirectory> |
| 134 | <unpack>false</unpack> |
| 135 | <useProjectArtifact>false</useProjectArtifact> |
| 136 | <outputFileNameMapping>org/apache/felix/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 137 | <includes> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 138 | <include>org.apache.felix:org.apache.felix.configadmin</include> |
| 139 | <include>org.apache.felix:org.apache.felix.prefs</include> |
Guillaume Nodet | 350b150 | 2009-05-05 15:46:15 +0000 | [diff] [blame] | 140 | <include>org.apache.felix:org.apache.felix.framework</include> |
Guillaume Nodet | 30fdfb9 | 2009-08-31 07:19:00 +0000 | [diff] [blame] | 141 | <include>org.apache.felix:org.apache.felix.fileinstall</include> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 142 | </includes> |
| 143 | </dependencySet> |
| 144 | <dependencySet> |
| 145 | <outputDirectory>/system</outputDirectory> |
| 146 | <unpack>false</unpack> |
| 147 | <useProjectArtifact>false</useProjectArtifact> |
Guillaume Nodet | 077bac5 | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 148 | <outputFileNameMapping>org/apache/felix/gogo/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 149 | <includes> |
| 150 | <include>org.apache.felix.gogo:org.apache.felix.gogo.runtime</include> |
Guillaume Nodet | 077bac5 | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 151 | </includes> |
| 152 | </dependencySet> |
| 153 | <dependencySet> |
| 154 | <outputDirectory>/system</outputDirectory> |
| 155 | <unpack>false</unpack> |
| 156 | <useProjectArtifact>false</useProjectArtifact> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 157 | <outputFileNameMapping>org/ops4j/pax/logging/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 158 | <includes> |
| 159 | <include>org.ops4j.pax.logging:pax-logging-api</include> |
| 160 | <include>org.ops4j.pax.logging:pax-logging-service</include> |
| 161 | </includes> |
| 162 | </dependencySet> |
| 163 | <dependencySet> |
| 164 | <outputDirectory>/system</outputDirectory> |
| 165 | <unpack>false</unpack> |
| 166 | <useProjectArtifact>false</useProjectArtifact> |
| 167 | <outputFileNameMapping>org/ops4j/pax/url/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 168 | <includes> |
| 169 | <include>org.ops4j.pax.url:pax-url-mvn</include> |
| 170 | <include>org.ops4j.pax.url:pax-url-wrap</include> |
| 171 | </includes> |
| 172 | </dependencySet> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 173 | <dependencySet> |
| 174 | <outputDirectory>/system</outputDirectory> |
| 175 | <unpack>false</unpack> |
| 176 | <useProjectArtifact>false</useProjectArtifact> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 177 | <outputFileNameMapping>org/apache/felix/karaf/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 178 | <includes> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 179 | <include>org.apache.felix.karaf:org.apache.felix.karaf.management</include> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 180 | </includes> |
| 181 | </dependencySet> |
| 182 | <dependencySet> |
| 183 | <outputDirectory>/system</outputDirectory> |
| 184 | <unpack>false</unpack> |
| 185 | <useProjectArtifact>false</useProjectArtifact> |
Guillaume Nodet | 2cb94d0 | 2009-08-07 09:55:51 +0000 | [diff] [blame] | 186 | <outputFileNameMapping>org/apache/felix/karaf/features/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 187 | <includes> |
| 188 | <include>org.apache.felix.karaf.features:org.apache.felix.karaf.features.core</include> |
| 189 | <include>org.apache.felix.karaf.features:org.apache.felix.karaf.features.command</include> |
| 190 | <include>org.apache.felix.karaf.features:org.apache.felix.karaf.features.management</include> |
| 191 | </includes> |
| 192 | </dependencySet> |
| 193 | <dependencySet> |
| 194 | <outputDirectory>/system</outputDirectory> |
| 195 | <unpack>false</unpack> |
| 196 | <useProjectArtifact>false</useProjectArtifact> |
Guillaume Nodet | a11a3ce | 2009-10-22 18:01:48 +0000 | [diff] [blame] | 197 | <outputFileNameMapping>org/apache/felix/karaf/admin/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 198 | <includes> |
| 199 | <include>org.apache.felix.karaf.admin:org.apache.felix.karaf.admin.core</include> |
| 200 | <include>org.apache.felix.karaf.admin:org.apache.felix.karaf.admin.command</include> |
| 201 | <include>org.apache.felix.karaf.admin:org.apache.felix.karaf.admin.management</include> |
| 202 | </includes> |
| 203 | </dependencySet> |
| 204 | <dependencySet> |
| 205 | <outputDirectory>/system</outputDirectory> |
| 206 | <unpack>false</unpack> |
| 207 | <useProjectArtifact>false</useProjectArtifact> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 208 | <outputFileNameMapping>org/apache/felix/karaf/deployer/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
Guillaume Nodet | 18c56a1 | 2009-04-30 09:10:03 +0000 | [diff] [blame] | 209 | <includes> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 210 | <include>org.apache.felix.karaf.deployer:org.apache.felix.karaf.deployer.spring</include> |
| 211 | <include>org.apache.felix.karaf.deployer:org.apache.felix.karaf.deployer.blueprint</include> |
| 212 | <include>org.apache.felix.karaf.deployer:org.apache.felix.karaf.deployer.features</include> |
Guillaume Nodet | 18c56a1 | 2009-04-30 09:10:03 +0000 | [diff] [blame] | 213 | </includes> |
| 214 | </dependencySet> |
| 215 | <dependencySet> |
| 216 | <outputDirectory>/system</outputDirectory> |
| 217 | <unpack>false</unpack> |
| 218 | <useProjectArtifact>false</useProjectArtifact> |
Guillaume Nodet | 91a52c0 | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 219 | <outputFileNameMapping>org/apache/felix/karaf/shell/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 220 | <includes> |
Guillaume Nodet | 91a52c0 | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 221 | <include>org.apache.felix.karaf.shell:org.apache.felix.karaf.shell.console</include> |
Gert Vanthienen | 70c155b | 2009-12-04 15:49:54 +0000 | [diff] [blame] | 222 | <include>org.apache.felix.karaf.shell:org.apache.felix.karaf.shell.dev</include> |
Guillaume Nodet | 91a52c0 | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 223 | <include>org.apache.felix.karaf.shell:org.apache.felix.karaf.shell.osgi</include> |
| 224 | <include>org.apache.felix.karaf.shell:org.apache.felix.karaf.shell.log</include> |
| 225 | <include>org.apache.felix.karaf.shell:org.apache.felix.karaf.shell.config</include> |
| 226 | <include>org.apache.felix.karaf.shell:org.apache.felix.karaf.shell.packages</include> |
| 227 | <include>org.apache.felix.karaf.shell:org.apache.felix.karaf.shell.ssh</include> |
| 228 | <include>org.apache.felix.karaf.shell:org.apache.felix.karaf.shell.commands</include> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 229 | </includes> |
| 230 | </dependencySet> |
| 231 | <dependencySet> |
| 232 | <outputDirectory>/system</outputDirectory> |
| 233 | <unpack>false</unpack> |
| 234 | <useProjectArtifact>false</useProjectArtifact> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 235 | <outputFileNameMapping>org/apache/felix/karaf/jaas/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 236 | <includes> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 237 | <include>org.apache.felix.karaf.jaas:org.apache.felix.karaf.jaas.config</include> |
| 238 | <include>org.apache.felix.karaf.jaas:org.apache.felix.karaf.jaas.modules</include> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 239 | </includes> |
| 240 | </dependencySet> |
| 241 | <dependencySet> |
| 242 | <outputDirectory>/system</outputDirectory> |
| 243 | <unpack>false</unpack> |
| 244 | <useProjectArtifact>false</useProjectArtifact> |
| 245 | <outputFileNameMapping>org/apache/sshd/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 246 | <includes> |
| 247 | <include>org.apache.sshd:sshd-core</include> |
| 248 | </includes> |
| 249 | </dependencySet> |
| 250 | <dependencySet> |
| 251 | <outputDirectory>/system</outputDirectory> |
| 252 | <unpack>false</unpack> |
| 253 | <useProjectArtifact>false</useProjectArtifact> |
| 254 | <outputFileNameMapping>org/apache/mina/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 255 | <includes> |
| 256 | <include>org.apache.mina:mina-core</include> |
| 257 | </includes> |
| 258 | </dependencySet> |
| 259 | <dependencySet> |
| 260 | <outputDirectory>/system</outputDirectory> |
| 261 | <unpack>false</unpack> |
| 262 | <useProjectArtifact>false</useProjectArtifact> |
Guillaume Nodet | 350b150 | 2009-05-05 15:46:15 +0000 | [diff] [blame] | 263 | <outputFileNameMapping>org/eclipse/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 264 | <includes> |
| 265 | <include>org.eclipse:osgi</include> |
| 266 | </includes> |
| 267 | </dependencySet> |
Guillaume Nodet | fcf2d34 | 2009-06-18 20:57:23 +0000 | [diff] [blame] | 268 | <dependencySet> |
| 269 | <outputDirectory>/system</outputDirectory> |
| 270 | <unpack>false</unpack> |
| 271 | <useProjectArtifact>false</useProjectArtifact> |
Guillaume Nodet | c7f649d | 2010-02-20 20:23:14 +0000 | [diff] [blame] | 272 | <outputFileNameMapping>org/apache/aries/blueprint/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
Guillaume Nodet | fcf2d34 | 2009-06-18 20:57:23 +0000 | [diff] [blame] | 273 | <includes> |
Guillaume Nodet | c7f649d | 2010-02-20 20:23:14 +0000 | [diff] [blame] | 274 | <include>org.apache.aries.blueprint:org.apache.aries.blueprint</include> |
| 275 | </includes> |
| 276 | </dependencySet> |
| 277 | <dependencySet> |
| 278 | <outputDirectory>/system</outputDirectory> |
| 279 | <unpack>false</unpack> |
| 280 | <useProjectArtifact>false</useProjectArtifact> |
| 281 | <outputFileNameMapping>org/apache/aries/jmx/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 282 | <includes> |
| 283 | <include>org.apache.aries.jmx:org.apache.aries.jmx</include> |
| 284 | <include>org.apache.aries.jmx:org.apache.aries.jmx.blueprint</include> |
Guillaume Nodet | fcf2d34 | 2009-06-18 20:57:23 +0000 | [diff] [blame] | 285 | </includes> |
| 286 | </dependencySet> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 287 | |
| 288 | </dependencySets> |
| 289 | |
| 290 | </assembly> |