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