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>zip</format> |
| 22 | </formats> |
| 23 | <fileSets> |
| 24 | |
| 25 | |
| 26 | <!-- Copy license and other files from root --> |
| 27 | <fileSet> |
| 28 | <directory>..</directory> |
| 29 | <outputDirectory>/</outputDirectory> |
| 30 | <includes> |
Guillaume Nodet | 91a52c0 | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 31 | <include>README</include> |
| 32 | <include>RELEASE*</include> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 33 | </includes> |
| 34 | <lineEnding>dos</lineEnding> |
| 35 | </fileSet> |
| 36 | |
| 37 | <!-- Copy over everything that needs to get dos line endings --> |
| 38 | <fileSet> |
| 39 | <directory>src/main/distribution/text</directory> |
| 40 | <outputDirectory>/</outputDirectory> |
| 41 | <lineEnding>dos</lineEnding> |
| 42 | </fileSet> |
| 43 | <fileSet> |
| 44 | <directory>src/main/distribution/windows-text</directory> |
| 45 | <outputDirectory>/</outputDirectory> |
| 46 | <lineEnding>dos</lineEnding> |
| 47 | </fileSet> |
| 48 | <fileSet> |
Guillaume Nodet | 5cd0379 | 2009-09-08 18:37:13 +0000 | [diff] [blame] | 49 | <directory>target/classes/bin</directory> |
| 50 | <outputDirectory>/bin/</outputDirectory> |
| 51 | <lineEnding>dos</lineEnding> |
| 52 | <includes> |
| 53 | <include>admin.bat</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>dos</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>dos</lineEnding> |
| 67 | </fileSet> |
| 68 | |
| 69 | <fileSet> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 70 | <directory>../demos</directory> |
| 71 | <outputDirectory>/demos/</outputDirectory> |
| 72 | <lineEnding>dos</lineEnding> |
| 73 | <excludes> |
| 74 | <exclude>**/target/**</exclude> |
| 75 | </excludes> |
| 76 | </fileSet> |
| 77 | |
| 78 | <!-- Copy over files that should not get the line endings converted --> |
| 79 | <fileSet> |
| 80 | <directory>src/main/distribution/binary</directory> |
| 81 | <outputDirectory>/</outputDirectory> |
| 82 | </fileSet> |
| 83 | |
| 84 | <!-- Copy over the files that should not get the line endings converted but need to be chmod to 755 --> |
| 85 | <fileSet> |
| 86 | <directory>src/main/distribution/windows-binary</directory> |
| 87 | <outputDirectory>/</outputDirectory> |
| 88 | </fileSet> |
| 89 | |
| 90 | <!-- Copy over jar files --> |
| 91 | <fileSet> |
| 92 | <directory>target/dependencies</directory> |
Guillaume Nodet | 225b799 | 2009-10-15 21:01:09 +0000 | [diff] [blame] | 93 | <outputDirectory>/</outputDirectory> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 94 | </fileSet> |
| 95 | |
| 96 | </fileSets> |
| 97 | |
| 98 | <files> |
| 99 | <file> |
Guillaume Nodet | 91a52c0 | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 100 | <source>${basedir}/../LICENSE</source> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 101 | <outputDirectory>/</outputDirectory> |
Guillaume Nodet | 91a52c0 | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 102 | <destName>LICENSE</destName> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 103 | <fileMode>0644</fileMode> |
| 104 | <lineEnding>dos</lineEnding> |
| 105 | </file> |
| 106 | <file> |
Guillaume Nodet | 91a52c0 | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 107 | <source>${basedir}/NOTICE</source> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 108 | <outputDirectory>/</outputDirectory> |
Guillaume Nodet | 91a52c0 | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 109 | <destName>NOTICE</destName> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 110 | <fileMode>0644</fileMode> |
| 111 | <lineEnding>dos</lineEnding> |
| 112 | </file> |
| 113 | <file> |
| 114 | <source>${basedir}/target/classes/features.xml</source> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 115 | <outputDirectory>/system/org/apache/felix/karaf/apache-felix-karaf/${version}</outputDirectory> |
| 116 | <destName>apache-felix-karaf-${version}-features.xml</destName> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 117 | <fileMode>0644</fileMode> |
| 118 | <lineEnding>dos</lineEnding> |
| 119 | </file> |
| 120 | </files> |
| 121 | |
| 122 | <dependencySets> |
| 123 | |
| 124 | <dependencySet> |
| 125 | <outputDirectory>/system</outputDirectory> |
| 126 | <unpack>false</unpack> |
| 127 | <useProjectArtifact>false</useProjectArtifact> |
| 128 | <outputFileNameMapping>org/apache/felix/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 129 | <includes> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 130 | <include>org.apache.felix:org.apache.felix.configadmin</include> |
| 131 | <include>org.apache.felix:org.apache.felix.prefs</include> |
Guillaume Nodet | 350b150 | 2009-05-05 15:46:15 +0000 | [diff] [blame] | 132 | <include>org.apache.felix:org.apache.felix.framework</include> |
Guillaume Nodet | 30fdfb9 | 2009-08-31 07:19:00 +0000 | [diff] [blame] | 133 | <include>org.apache.felix:org.apache.felix.fileinstall</include> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 134 | </includes> |
| 135 | </dependencySet> |
| 136 | <dependencySet> |
| 137 | <outputDirectory>/system</outputDirectory> |
| 138 | <unpack>false</unpack> |
| 139 | <useProjectArtifact>false</useProjectArtifact> |
Guillaume Nodet | 35bb221 | 2009-07-09 15:29:27 +0000 | [diff] [blame] | 140 | <outputFileNameMapping>org/apache/felix/gogo/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 141 | <includes> |
| 142 | <include>org.apache.felix.gogo:org.apache.felix.gogo.runtime</include> |
Guillaume Nodet | 35bb221 | 2009-07-09 15:29:27 +0000 | [diff] [blame] | 143 | </includes> |
| 144 | </dependencySet> |
| 145 | <dependencySet> |
| 146 | <outputDirectory>/system</outputDirectory> |
| 147 | <unpack>false</unpack> |
| 148 | <useProjectArtifact>false</useProjectArtifact> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 149 | <outputFileNameMapping>org/ops4j/pax/logging/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 150 | <includes> |
| 151 | <include>org.ops4j.pax.logging:pax-logging-api</include> |
| 152 | <include>org.ops4j.pax.logging:pax-logging-service</include> |
| 153 | </includes> |
| 154 | </dependencySet> |
| 155 | <dependencySet> |
| 156 | <outputDirectory>/system</outputDirectory> |
| 157 | <unpack>false</unpack> |
| 158 | <useProjectArtifact>false</useProjectArtifact> |
| 159 | <outputFileNameMapping>org/ops4j/pax/url/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 160 | <includes> |
| 161 | <include>org.ops4j.pax.url:pax-url-mvn</include> |
| 162 | <include>org.ops4j.pax.url:pax-url-wrap</include> |
| 163 | </includes> |
| 164 | </dependencySet> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 165 | <dependencySet> |
| 166 | <outputDirectory>/system</outputDirectory> |
| 167 | <unpack>false</unpack> |
| 168 | <useProjectArtifact>false</useProjectArtifact> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 169 | <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] | 170 | <includes> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 171 | <include>org.apache.felix.karaf:org.apache.felix.karaf.management</include> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 172 | </includes> |
| 173 | </dependencySet> |
| 174 | <dependencySet> |
| 175 | <outputDirectory>/system</outputDirectory> |
| 176 | <unpack>false</unpack> |
| 177 | <useProjectArtifact>false</useProjectArtifact> |
Guillaume Nodet | 2cb94d0 | 2009-08-07 09:55:51 +0000 | [diff] [blame] | 178 | <outputFileNameMapping>org/apache/felix/karaf/features/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 179 | <includes> |
| 180 | <include>org.apache.felix.karaf.features:org.apache.felix.karaf.features.core</include> |
| 181 | <include>org.apache.felix.karaf.features:org.apache.felix.karaf.features.command</include> |
| 182 | <include>org.apache.felix.karaf.features:org.apache.felix.karaf.features.management</include> |
| 183 | </includes> |
| 184 | </dependencySet> |
| 185 | <dependencySet> |
| 186 | <outputDirectory>/system</outputDirectory> |
| 187 | <unpack>false</unpack> |
| 188 | <useProjectArtifact>false</useProjectArtifact> |
Guillaume Nodet | a11a3ce | 2009-10-22 18:01:48 +0000 | [diff] [blame] | 189 | <outputFileNameMapping>org/apache/felix/karaf/admin/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 190 | <includes> |
| 191 | <include>org.apache.felix.karaf.admin:org.apache.felix.karaf.admin.core</include> |
| 192 | <include>org.apache.felix.karaf.admin:org.apache.felix.karaf.admin.command</include> |
| 193 | <include>org.apache.felix.karaf.admin:org.apache.felix.karaf.admin.management</include> |
| 194 | </includes> |
| 195 | </dependencySet> |
| 196 | <dependencySet> |
| 197 | <outputDirectory>/system</outputDirectory> |
| 198 | <unpack>false</unpack> |
| 199 | <useProjectArtifact>false</useProjectArtifact> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 200 | <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] | 201 | <includes> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 202 | <include>org.apache.felix.karaf.deployer:org.apache.felix.karaf.deployer.spring</include> |
| 203 | <include>org.apache.felix.karaf.deployer:org.apache.felix.karaf.deployer.blueprint</include> |
| 204 | <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] | 205 | </includes> |
| 206 | </dependencySet> |
| 207 | <dependencySet> |
| 208 | <outputDirectory>/system</outputDirectory> |
| 209 | <unpack>false</unpack> |
| 210 | <useProjectArtifact>false</useProjectArtifact> |
Guillaume Nodet | 91a52c0 | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 211 | <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] | 212 | <includes> |
Guillaume Nodet | 91a52c0 | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 213 | <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] | 214 | <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] | 215 | <include>org.apache.felix.karaf.shell:org.apache.felix.karaf.shell.osgi</include> |
| 216 | <include>org.apache.felix.karaf.shell:org.apache.felix.karaf.shell.log</include> |
| 217 | <include>org.apache.felix.karaf.shell:org.apache.felix.karaf.shell.config</include> |
| 218 | <include>org.apache.felix.karaf.shell:org.apache.felix.karaf.shell.packages</include> |
| 219 | <include>org.apache.felix.karaf.shell:org.apache.felix.karaf.shell.ssh</include> |
| 220 | <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] | 221 | </includes> |
| 222 | </dependencySet> |
| 223 | <dependencySet> |
| 224 | <outputDirectory>/system</outputDirectory> |
| 225 | <unpack>false</unpack> |
| 226 | <useProjectArtifact>false</useProjectArtifact> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 227 | <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] | 228 | <includes> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 229 | <include>org.apache.felix.karaf.jaas:org.apache.felix.karaf.jaas.config</include> |
| 230 | <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] | 231 | </includes> |
| 232 | </dependencySet> |
| 233 | <dependencySet> |
| 234 | <outputDirectory>/system</outputDirectory> |
| 235 | <unpack>false</unpack> |
| 236 | <useProjectArtifact>false</useProjectArtifact> |
| 237 | <outputFileNameMapping>org/apache/sshd/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 238 | <includes> |
| 239 | <include>org.apache.sshd:sshd-core</include> |
| 240 | </includes> |
| 241 | </dependencySet> |
| 242 | <dependencySet> |
| 243 | <outputDirectory>/system</outputDirectory> |
| 244 | <unpack>false</unpack> |
| 245 | <useProjectArtifact>false</useProjectArtifact> |
| 246 | <outputFileNameMapping>org/apache/mina/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 247 | <includes> |
| 248 | <include>org.apache.mina:mina-core</include> |
| 249 | </includes> |
| 250 | </dependencySet> |
| 251 | <dependencySet> |
| 252 | <outputDirectory>/system</outputDirectory> |
| 253 | <unpack>false</unpack> |
| 254 | <useProjectArtifact>false</useProjectArtifact> |
| 255 | <outputFileNameMapping>org/osgi/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 256 | <includes> |
Guillaume Nodet | 077bac5 | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 257 | <include>org.osgi:org.osgi.impl.bundle.jmx</include> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 258 | </includes> |
| 259 | </dependencySet> |
Guillaume Nodet | 350b150 | 2009-05-05 15:46:15 +0000 | [diff] [blame] | 260 | <dependencySet> |
| 261 | <outputDirectory>/system</outputDirectory> |
| 262 | <unpack>false</unpack> |
| 263 | <useProjectArtifact>false</useProjectArtifact> |
| 264 | <outputFileNameMapping>org/eclipse/${artifact.artifactId}/${artifact.baseVersion}/${artifact.artifactId}-${artifact.baseVersion}${dashClassifier?}.${artifact.extension}</outputFileNameMapping> |
| 265 | <includes> |
| 266 | <include>org.eclipse:osgi</include> |
| 267 | </includes> |
| 268 | </dependencySet> |
Guillaume Nodet | fcf2d34 | 2009-06-18 20:57:23 +0000 | [diff] [blame] | 269 | <dependencySet> |
| 270 | <outputDirectory>/system</outputDirectory> |
| 271 | <unpack>false</unpack> |
| 272 | <useProjectArtifact>false</useProjectArtifact> |
Chris Custine | 45781ac | 2009-09-15 01:49:45 +0000 | [diff] [blame] | 273 | <outputFileNameMapping>org/apache/geronimo/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] | 274 | <includes> |
Chris Custine | 45781ac | 2009-09-15 01:49:45 +0000 | [diff] [blame] | 275 | <include>org.apache.geronimo.blueprint:geronimo-blueprint</include> |
Guillaume Nodet | fcf2d34 | 2009-06-18 20:57:23 +0000 | [diff] [blame] | 276 | </includes> |
| 277 | </dependencySet> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 278 | |
| 279 | </dependencySets> |
| 280 | |
| 281 | </assembly> |