Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | |
| 4 | <!-- |
| 5 | |
| 6 | Licensed to the Apache Software Foundation (ASF) under one or more |
| 7 | contributor license agreements. See the NOTICE file distributed with |
| 8 | this work for additional information regarding copyright ownership. |
| 9 | The ASF licenses this file to You under the Apache License, Version 2.0 |
| 10 | (the "License"); you may not use this file except in compliance with |
| 11 | the License. You may obtain a copy of the License at |
| 12 | |
| 13 | http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | |
| 15 | Unless required by applicable law or agreed to in writing, software |
| 16 | distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | See the License for the specific language governing permissions and |
| 19 | limitations under the License. |
| 20 | --> |
Guillaume Nodet | f9b2bf4 | 2009-07-10 06:56:47 +0000 | [diff] [blame] | 21 | |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | |
| 24 | <parent> |
Guillaume Nodet | 1343e1d | 2009-05-11 11:55:10 +0000 | [diff] [blame] | 25 | <groupId>org.apache.felix</groupId> |
Gert Vanthienen | c3f669d | 2009-06-16 11:58:10 +0000 | [diff] [blame] | 26 | <artifactId>felix-parent</artifactId> |
| 27 | <version>1.2.0</version> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 28 | </parent> |
| 29 | |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 30 | <groupId>org.apache.felix.karaf</groupId> |
Guillaume Nodet | 1343e1d | 2009-05-11 11:55:10 +0000 | [diff] [blame] | 31 | <artifactId>karaf</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 32 | <packaging>pom</packaging> |
| 33 | <version>1.2.0-SNAPSHOT</version> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 34 | <name>Apache Felix Karaf</name> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 35 | <inceptionYear>2007</inceptionYear> |
| 36 | |
| 37 | <modules> |
| 38 | <module>main</module> |
Guillaume Nodet | 2cb94d0 | 2009-08-07 09:55:51 +0000 | [diff] [blame] | 39 | <module>features</module> |
Guillaume Nodet | 18c56a1 | 2009-04-30 09:10:03 +0000 | [diff] [blame] | 40 | <module>deployer</module> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 41 | <module>gshell</module> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 42 | <module>jaas</module> |
| 43 | <module>client</module> |
| 44 | <module>management</module> |
Gert Vanthienen | 971f933 | 2009-06-06 13:57:36 +0000 | [diff] [blame] | 45 | <module>webconsole</module> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 46 | <module>assembly</module> |
| 47 | <module>demos</module> |
Guillaume Nodet | 8d9a141 | 2009-08-17 20:22:49 +0000 | [diff] [blame] | 48 | <module>itests</module> |
Gert Vanthienen | 4c5d815 | 2009-06-16 07:05:38 +0000 | [diff] [blame] | 49 | <module>tooling</module> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 50 | </modules> |
| 51 | |
| 52 | <scm> |
Carsten Ziegeler | d372ef1 | 2009-04-27 18:39:46 +0000 | [diff] [blame] | 53 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/karaf</connection> |
| 54 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/karaf</developerConnection> |
| 55 | <url>http://svn.apache.org/viewvc/felix/trunk/karaf/</url> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 56 | </scm> |
| 57 | |
| 58 | <issueManagement> |
| 59 | <system>jira</system> |
Guillaume Nodet | 1343e1d | 2009-05-11 11:55:10 +0000 | [diff] [blame] | 60 | <url>https://issues.apache.org/jira/browse/FELIX/component/12312824</url> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 61 | </issueManagement> |
| 62 | |
| 63 | <prerequisites> |
| 64 | <maven>2.0.7</maven> |
| 65 | </prerequisites> |
| 66 | |
| 67 | <properties> |
Guillaume Nodet | 6a8e2f1 | 2009-08-24 07:27:30 +0000 | [diff] [blame] | 68 | <aopalliance.version>1.0_1</aopalliance.version> |
| 69 | <cglib.version>2.1_3_2</cglib.version> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 70 | <commons.logging.version>1.1.1</commons.logging.version> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 71 | <depends.maven.plugin.version>1.0</depends.maven.plugin.version> |
| 72 | <easymock.version>2.4</easymock.version> |
Guillaume Nodet | f9b2bf4 | 2009-07-10 06:56:47 +0000 | [diff] [blame] | 73 | <equinox.version>3.5.0.v20090520</equinox.version> |
Guillaume Nodet | 89190a1 | 2009-04-28 21:28:02 +0000 | [diff] [blame] | 74 | <felix.bundlerepository.version>1.4.0</felix.bundlerepository.version> |
Gert Vanthienen | 9385bac | 2009-06-06 12:03:00 +0000 | [diff] [blame] | 75 | <felix.compendium.version>1.2.0</felix.compendium.version> |
| 76 | <felix.configadmin.version>1.0.4</felix.configadmin.version> |
Guillaume Nodet | fe33416 | 2009-06-18 21:09:10 +0000 | [diff] [blame] | 77 | <felix.framework.version>1.9.0-SNAPSHOT</felix.framework.version> |
Guillaume Nodet | 077bac5 | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 78 | <felix.gogo.version>0.9.0-SNAPSHOT</felix.gogo.version> |
Guillaume Nodet | fe33416 | 2009-06-18 21:09:10 +0000 | [diff] [blame] | 79 | <felix.osgi.version>1.3.0-SNAPSHOT</felix.osgi.version> |
Gert Vanthienen | 9385bac | 2009-06-06 12:03:00 +0000 | [diff] [blame] | 80 | <felix.plugin.version>2.0.0</felix.plugin.version> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 81 | <felix.prefs.version>1.0.2</felix.prefs.version> |
Gert Vanthienen | 9627037 | 2009-07-03 14:05:00 +0000 | [diff] [blame] | 82 | <felix.webconsole.version>1.2.11-SNAPSHOT</felix.webconsole.version> |
Guillaume Nodet | afcbf45 | 2009-06-11 08:36:21 +0000 | [diff] [blame] | 83 | <felix.metatype.version>1.0.2</felix.metatype.version> |
Guillaume Nodet | fcf2d34 | 2009-06-18 20:57:23 +0000 | [diff] [blame] | 84 | <geronimo.blueprint.version>1.0.0-SNAPSHOT</geronimo.blueprint.version> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 85 | <geronimo.servlet.version>1.1.2</geronimo.servlet.version> |
Guillaume Nodet | f9b2bf4 | 2009-07-10 06:56:47 +0000 | [diff] [blame] | 86 | <jansi.version>1.0-SNAPSHOT</jansi.version> |
Guillaume Nodet | 653747c | 2009-06-18 21:13:47 +0000 | [diff] [blame] | 87 | <jetty.bundle.version>6.1.14_1</jetty.bundle.version> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 88 | <junit.version>3.8.2_1</junit.version> |
Guillaume Nodet | f9b2bf4 | 2009-07-10 06:56:47 +0000 | [diff] [blame] | 89 | <jline.version>0.9.95-SNAPSHOT</jline.version> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 90 | <log4j.version>1.2.14</log4j.version> |
Gert Vanthienen | 4c5d815 | 2009-06-16 07:05:38 +0000 | [diff] [blame] | 91 | <maven.version>2.0.9</maven.version> |
Guillaume Nodet | edf7d1a | 2009-06-08 19:25:20 +0000 | [diff] [blame] | 92 | <mina.version>2.0.0-M6</mina.version> |
Guillaume Nodet | 4d838bd | 2009-08-10 08:16:33 +0000 | [diff] [blame] | 93 | <pax.exam.version>1.0.0</pax.exam.version> |
| 94 | <pax.logging.version>1.4</pax.logging.version> |
| 95 | <pax.runner.version>1.1.1</pax.runner.version> |
| 96 | <pax.url.version>1.0.0</pax.url.version> |
Guillaume Nodet | 653747c | 2009-06-18 21:13:47 +0000 | [diff] [blame] | 97 | <pax.web.version>0.6.0</pax.web.version> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 98 | <servicemix.legal.version>1.0</servicemix.legal.version> |
Gert Vanthienen | 971f933 | 2009-06-06 13:57:36 +0000 | [diff] [blame] | 99 | <servlet.api.version>2.5</servlet.api.version> |
Guillaume Nodet | 653747c | 2009-06-18 21:13:47 +0000 | [diff] [blame] | 100 | <spring.osgi.version>1.2.0</spring.osgi.version> |
| 101 | <spring.version>2.5.6.SEC01</spring.version> |
Guillaume Nodet | f9b2bf4 | 2009-07-10 06:56:47 +0000 | [diff] [blame] | 102 | <sshd.version>1.0-SNAPSHOT</sshd.version> |
Guillaume Nodet | 077bac5 | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 103 | <osgi.jmx.version>4.2.0.200907080519</osgi.jmx.version> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 104 | |
| 105 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Guillaume Nodet | 3e9a428 | 2009-05-04 16:30:02 +0000 | [diff] [blame] | 106 | |
| 107 | <karaf.osgi.version>1.2.0</karaf.osgi.version> |
| 108 | <bnd.version.policy>[$(version;==;$(@)),$(version;+;$(@)))</bnd.version.policy> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 109 | </properties> |
| 110 | |
| 111 | <repositories> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 112 | <!-- Apache snapshots --> |
| 113 | <repository> |
| 114 | <id>apache-snapshots</id> |
| 115 | <name>Apache Snapshots Repository</name> |
| 116 | <url>http://repository.apache.org/content/groups/snapshots-group</url> |
| 117 | <releases> |
| 118 | <enabled>false</enabled> |
| 119 | </releases> |
| 120 | <snapshots> |
| 121 | <enabled>true</enabled> |
| 122 | </snapshots> |
| 123 | </repository> |
| 124 | <!-- ServiceMix repo --> |
| 125 | <repository> |
| 126 | <id>servicemix</id> |
| 127 | <name>Apache ServiceMix Repository</name> |
| 128 | <url>http://svn.apache.org/repos/asf/servicemix/m2-repo</url> |
| 129 | <releases> |
| 130 | <enabled>true</enabled> |
| 131 | </releases> |
| 132 | <snapshots> |
| 133 | <enabled>false</enabled> |
| 134 | </snapshots> |
| 135 | </repository> |
| 136 | <!-- OPS4J repo --> |
| 137 | <repository> |
| 138 | <id>ops4j</id> |
| 139 | <name>OPS4j Repository</name> |
| 140 | <url>http://repository.ops4j.org/maven2</url> |
| 141 | <releases> |
| 142 | <enabled>true</enabled> |
| 143 | </releases> |
| 144 | <snapshots> |
| 145 | <enabled>false</enabled> |
| 146 | </snapshots> |
| 147 | </repository> |
Guillaume Nodet | c2a0eb5 | 2009-06-19 10:36:37 +0000 | [diff] [blame] | 148 | <!-- OPS4J Snapshot repo --> |
| 149 | <repository> |
| 150 | <id>ops4j-snapshots</id> |
| 151 | <name>OPS4j Repository Snapshot</name> |
| 152 | <url>http://repository.ops4j.org/mvn-snapshots</url> |
| 153 | <releases> |
| 154 | <enabled>false</enabled> |
| 155 | </releases> |
| 156 | <snapshots> |
| 157 | <enabled>true</enabled> |
| 158 | </snapshots> |
| 159 | </repository> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 160 | <!-- Spring milestones repository --> |
| 161 | <!-- TODO: remove this repo when spring-dm 1.2.0 is out --> |
| 162 | <repository> |
| 163 | <id>spring-milestone</id> |
| 164 | <name>Spring Portfolio Milestone Repository</name> |
| 165 | <url>http://s3.amazonaws.com/maven.springframework.org/milestone</url> |
| 166 | <releases> |
| 167 | <enabled>true</enabled> |
| 168 | </releases> |
| 169 | <snapshots> |
| 170 | <enabled>false</enabled> |
| 171 | </snapshots> |
| 172 | </repository> |
Guillaume Nodet | f9b2bf4 | 2009-07-10 06:56:47 +0000 | [diff] [blame] | 173 | |
| 174 | <repository> |
| 175 | <id>gnodet.snapshots</id> |
| 176 | <url>http://people.apache.org/~gnodet/snapshots</url> |
| 177 | <releases> |
| 178 | <enabled>false</enabled> |
| 179 | </releases> |
| 180 | <snapshots> |
| 181 | <enabled>true</enabled> |
| 182 | </snapshots> |
| 183 | </repository> |
Gert Vanthienen | 1ba9a05 | 2009-08-06 21:36:13 +0000 | [diff] [blame] | 184 | |
| 185 | <repository> |
| 186 | <id>jansi.snapshot.m2</id> |
| 187 | <url>http://jansi.fusesource.org/repo/snapshot</url> |
| 188 | <releases> |
| 189 | <enabled>false</enabled> |
| 190 | </releases> |
| 191 | <snapshots> |
| 192 | <enabled>true</enabled> |
| 193 | </snapshots> |
| 194 | </repository> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 195 | </repositories> |
| 196 | |
| 197 | <pluginRepositories> |
| 198 | <!-- ServiceMix repo --> |
| 199 | <pluginRepository> |
| 200 | <id>servicemix</id> |
| 201 | <name>Apache ServiceMix Repository</name> |
| 202 | <url>http://svn.apache.org/repos/asf/servicemix/m2-repo</url> |
| 203 | </pluginRepository> |
| 204 | </pluginRepositories> |
| 205 | |
| 206 | <dependencyManagement> |
| 207 | <dependencies> |
| 208 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 209 | <groupId>org.apache.felix.karaf</groupId> |
| 210 | <artifactId>org.apache.felix.karaf.main</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 211 | <version>${pom.version}</version> |
| 212 | </dependency> |
| 213 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 214 | <groupId>org.apache.felix.karaf</groupId> |
| 215 | <artifactId>org.apache.felix.karaf.client</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 216 | <version>${pom.version}</version> |
| 217 | </dependency> |
| 218 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 219 | <groupId>org.apache.felix.karaf.deployer</groupId> |
| 220 | <artifactId>org.apache.felix.karaf.deployer.filemonitor</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 221 | <version>${pom.version}</version> |
| 222 | </dependency> |
| 223 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 224 | <groupId>org.apache.felix.karaf.deployer</groupId> |
| 225 | <artifactId>org.apache.felix.karaf.deployer.spring</artifactId> |
Guillaume Nodet | 18c56a1 | 2009-04-30 09:10:03 +0000 | [diff] [blame] | 226 | <version>${pom.version}</version> |
| 227 | </dependency> |
| 228 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 229 | <groupId>org.apache.felix.karaf.deployer</groupId> |
| 230 | <artifactId>org.apache.felix.karaf.deployer.blueprint</artifactId> |
Guillaume Nodet | 18c56a1 | 2009-04-30 09:10:03 +0000 | [diff] [blame] | 231 | <version>${pom.version}</version> |
| 232 | </dependency> |
| 233 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 234 | <groupId>org.apache.felix.karaf.deployer</groupId> |
| 235 | <artifactId>org.apache.felix.karaf.deployer.features</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 236 | <version>${pom.version}</version> |
| 237 | </dependency> |
| 238 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 239 | <groupId>org.apache.felix.karaf</groupId> |
| 240 | <artifactId>org.apache.felix.karaf.management</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 241 | <version>${pom.version}</version> |
| 242 | </dependency> |
| 243 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 244 | <groupId>org.apache.felix.karaf</groupId> |
| 245 | <artifactId>org.apache.felix.karaf.demos</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 246 | <version>${pom.version}</version> |
Guillaume Nodet | 4d838bd | 2009-08-10 08:16:33 +0000 | [diff] [blame] | 247 | </dependency> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 248 | <dependency> |
Guillaume Nodet | 2cb94d0 | 2009-08-07 09:55:51 +0000 | [diff] [blame] | 249 | <groupId>org.apache.felix.karaf.features</groupId> |
| 250 | <artifactId>org.apache.felix.karaf.features.core</artifactId> |
| 251 | <version>${pom.version}</version> |
| 252 | </dependency> |
| 253 | <dependency> |
| 254 | <groupId>org.apache.felix.karaf.features</groupId> |
| 255 | <artifactId>org.apache.felix.karaf.features.command</artifactId> |
| 256 | <version>${pom.version}</version> |
| 257 | </dependency> |
| 258 | <dependency> |
| 259 | <groupId>org.apache.felix.karaf.features</groupId> |
| 260 | <artifactId>org.apache.felix.karaf.features.management</artifactId> |
| 261 | <version>${pom.version}</version> |
| 262 | </dependency> |
| 263 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 264 | <groupId>org.apache.felix.karaf.gshell</groupId> |
| 265 | <artifactId>org.apache.felix.karaf.gshell.core</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 266 | <version>${pom.version}</version> |
| 267 | </dependency> |
| 268 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 269 | <groupId>org.apache.felix.karaf.gshell</groupId> |
Guillaume Nodet | 077bac5 | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 270 | <artifactId>org.apache.felix.karaf.gshell.console</artifactId> |
| 271 | <version>${pom.version}</version> |
| 272 | </dependency> |
| 273 | <dependency> |
| 274 | <groupId>org.apache.felix.karaf.gshell</groupId> |
Guillaume Nodet | ccfc3d8 | 2009-05-06 14:40:12 +0000 | [diff] [blame] | 275 | <artifactId>org.apache.felix.karaf.gshell.run</artifactId> |
| 276 | <version>${pom.version}</version> |
| 277 | </dependency> |
| 278 | <dependency> |
| 279 | <groupId>org.apache.felix.karaf.gshell</groupId> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 280 | <artifactId>org.apache.felix.karaf.gshell.admin</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 281 | <version>${pom.version}</version> |
| 282 | </dependency> |
| 283 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 284 | <groupId>org.apache.felix.karaf.gshell</groupId> |
| 285 | <artifactId>org.apache.felix.karaf.gshell.obr</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 286 | <version>${pom.version}</version> |
| 287 | </dependency> |
| 288 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 289 | <groupId>org.apache.felix.karaf.gshell</groupId> |
| 290 | <artifactId>org.apache.felix.karaf.gshell.osgi</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 291 | <version>${pom.version}</version> |
| 292 | </dependency> |
| 293 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 294 | <groupId>org.apache.felix.karaf.gshell</groupId> |
| 295 | <artifactId>org.apache.felix.karaf.gshell.log</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 296 | <version>${pom.version}</version> |
| 297 | </dependency> |
| 298 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 299 | <groupId>org.apache.felix.karaf.gshell</groupId> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 300 | <artifactId>org.apache.felix.karaf.gshell.config</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 301 | <version>${pom.version}</version> |
| 302 | </dependency> |
| 303 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 304 | <groupId>org.apache.felix.karaf.gshell</groupId> |
| 305 | <artifactId>org.apache.felix.karaf.gshell.packages</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 306 | <version>${pom.version}</version> |
| 307 | </dependency> |
| 308 | <dependency> |
Guillaume Nodet | 077bac5 | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 309 | <groupId>org.apache.felix.karaf.gshell</groupId> |
| 310 | <artifactId>org.apache.felix.karaf.gshell.ssh</artifactId> |
| 311 | <version>${pom.version}</version> |
| 312 | </dependency> |
| 313 | <dependency> |
| 314 | <groupId>org.apache.felix.karaf.gshell</groupId> |
| 315 | <artifactId>org.apache.felix.karaf.gshell.commands</artifactId> |
| 316 | <version>${pom.version}</version> |
| 317 | </dependency> |
| 318 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 319 | <groupId>org.apache.felix.karaf.jaas</groupId> |
| 320 | <artifactId>org.apache.felix.karaf.jaas.boot</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 321 | <version>${pom.version}</version> |
| 322 | </dependency> |
| 323 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 324 | <groupId>org.apache.felix.karaf.jaas</groupId> |
| 325 | <artifactId>org.apache.felix.karaf.jaas.config</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 326 | <version>${pom.version}</version> |
| 327 | </dependency> |
| 328 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 329 | <groupId>org.apache.felix.karaf.jaas</groupId> |
| 330 | <artifactId>org.apache.felix.karaf.jaas.modules</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 331 | <version>${pom.version}</version> |
| 332 | </dependency> |
| 333 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 334 | <groupId>org.apache.felix.karaf.demos</groupId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 335 | <artifactId>smx4web</artifactId> |
| 336 | <version>${pom.version}</version> |
| 337 | </dependency> |
| 338 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 339 | <groupId>org.apache.felix.karaf</groupId> |
| 340 | <artifactId>apache-felix-karaf</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 341 | <version>${pom.version}</version> |
| 342 | </dependency> |
| 343 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 344 | <groupId>org.apache.felix.karaf</groupId> |
| 345 | <artifactId>apache-felix-karaf</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 346 | <type>zip</type> |
| 347 | <version>${pom.version}</version> |
| 348 | </dependency> |
| 349 | <dependency> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 350 | <groupId>org.apache.felix.karaf</groupId> |
| 351 | <artifactId>apache-felix-karaf</artifactId> |
Guillaume Nodet | f201501 | 2009-04-30 07:04:50 +0000 | [diff] [blame] | 352 | <classifier>features</classifier> |
| 353 | <type>xml</type> |
| 354 | <version>${pom.version}</version> |
| 355 | </dependency> |
| 356 | <dependency> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 357 | <groupId>org.apache.felix</groupId> |
| 358 | <artifactId>org.apache.felix.framework</artifactId> |
| 359 | <version>${felix.framework.version}</version> |
| 360 | <exclusions> |
| 361 | <exclusion> |
| 362 | <groupId>org.apache.felix</groupId> |
| 363 | <artifactId>org.osgi.compendium</artifactId> |
| 364 | </exclusion> |
| 365 | </exclusions> |
| 366 | </dependency> |
| 367 | <dependency> |
| 368 | <groupId>org.apache.felix</groupId> |
| 369 | <artifactId>org.osgi.compendium</artifactId> |
| 370 | <version>${felix.compendium.version}</version> |
| 371 | <exclusions> |
| 372 | <exclusion> |
| 373 | <groupId>org.apache.felix</groupId> |
| 374 | <artifactId>org.osgi.foundation</artifactId> |
| 375 | </exclusion> |
| 376 | <exclusion> |
| 377 | <groupId>org.apache.felix</groupId> |
| 378 | <artifactId>javax.servlet</artifactId> |
| 379 | </exclusion> |
| 380 | </exclusions> |
| 381 | </dependency> |
| 382 | <dependency> |
| 383 | <groupId>org.apache.felix</groupId> |
| 384 | <artifactId>org.osgi.core</artifactId> |
| 385 | <version>${felix.osgi.version}</version> |
| 386 | </dependency> |
| 387 | <dependency> |
| 388 | <groupId>org.apache.felix</groupId> |
| 389 | <artifactId>org.apache.felix.configadmin</artifactId> |
| 390 | <version>${felix.configadmin.version}</version> |
| 391 | </dependency> |
| 392 | <dependency> |
| 393 | <groupId>org.apache.felix</groupId> |
| 394 | <artifactId>org.apache.felix.prefs</artifactId> |
| 395 | <version>${felix.prefs.version}</version> |
| 396 | </dependency> |
| 397 | <dependency> |
| 398 | <groupId>org.apache.felix</groupId> |
| 399 | <artifactId>org.apache.felix.bundlerepository</artifactId> |
| 400 | <version>${felix.bundlerepository.version}</version> |
| 401 | <exclusions> |
| 402 | <exclusion> |
| 403 | <groupId>org.apache.felix</groupId> |
| 404 | <artifactId>org.osgi.service.obr</artifactId> |
| 405 | </exclusion> |
| 406 | <exclusion> |
| 407 | <groupId>org.apache.felix</groupId> |
| 408 | <artifactId>org.apache.felix.shell</artifactId> |
| 409 | </exclusion> |
| 410 | <exclusion> |
| 411 | <groupId>net.sf.kxml</groupId> |
| 412 | <artifactId>kxml2</artifactId> |
| 413 | </exclusion> |
| 414 | </exclusions> |
| 415 | </dependency> |
| 416 | <dependency> |
Gert Vanthienen | 971f933 | 2009-06-06 13:57:36 +0000 | [diff] [blame] | 417 | <groupId>org.apache.felix</groupId> |
Guillaume Nodet | 8822ca1 | 2009-06-18 21:05:47 +0000 | [diff] [blame] | 418 | <artifactId>org.apache.felix.metatype</artifactId> |
| 419 | <version>${felix.metatype.version}</version> |
| 420 | </dependency> |
| 421 | <dependency> |
| 422 | <groupId>org.apache.felix</groupId> |
Gert Vanthienen | 971f933 | 2009-06-06 13:57:36 +0000 | [diff] [blame] | 423 | <artifactId>org.apache.felix.webconsole</artifactId> |
| 424 | <version>${felix.webconsole.version}</version> |
| 425 | </dependency> |
| 426 | <dependency> |
Guillaume Nodet | afcbf45 | 2009-06-11 08:36:21 +0000 | [diff] [blame] | 427 | <groupId>org.apache.felix</groupId> |
| 428 | <artifactId>org.apache.felix.metatype</artifactId> |
| 429 | <version>${felix.metatype.version}</version> |
| 430 | </dependency> |
| 431 | <dependency> |
Gert Vanthienen | 4c5d815 | 2009-06-16 07:05:38 +0000 | [diff] [blame] | 432 | <groupId>org.apache.felix</groupId> |
| 433 | <artifactId>maven-bundle-plugin</artifactId> |
| 434 | <version>${felix.plugin.version}</version> |
| 435 | </dependency> |
| 436 | <dependency> |
| 437 | <groupId>org.apache.maven</groupId> |
| 438 | <artifactId>maven-plugin-api</artifactId> |
| 439 | <version>${maven.version}</version> |
| 440 | </dependency> |
| 441 | <dependency> |
| 442 | <groupId>org.apache.maven</groupId> |
| 443 | <artifactId>maven-project</artifactId> |
| 444 | <version>${maven.version}</version> |
| 445 | </dependency> |
| 446 | <dependency> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 447 | <groupId>org.springframework</groupId> |
| 448 | <artifactId>spring-aop</artifactId> |
| 449 | <version>${spring.version}</version> |
| 450 | </dependency> |
| 451 | <dependency> |
| 452 | <groupId>org.springframework</groupId> |
| 453 | <artifactId>spring-beans</artifactId> |
| 454 | <version>${spring.version}</version> |
| 455 | </dependency> |
| 456 | <dependency> |
| 457 | <groupId>org.springframework</groupId> |
| 458 | <artifactId>spring-core</artifactId> |
| 459 | <version>${spring.version}</version> |
| 460 | </dependency> |
| 461 | <dependency> |
| 462 | <groupId>org.springframework</groupId> |
| 463 | <artifactId>spring-context</artifactId> |
| 464 | <version>${spring.version}</version> |
| 465 | </dependency> |
| 466 | <dependency> |
| 467 | <groupId>org.springframework</groupId> |
| 468 | <artifactId>spring-test</artifactId> |
| 469 | <version>${spring.version}</version> |
| 470 | </dependency> |
| 471 | <dependency> |
| 472 | <groupId>org.springframework.osgi</groupId> |
| 473 | <artifactId>spring-osgi-core</artifactId> |
| 474 | <version>${spring.osgi.version}</version> |
| 475 | </dependency> |
| 476 | <dependency> |
| 477 | <groupId>org.springframework.osgi</groupId> |
| 478 | <artifactId>spring-osgi-io</artifactId> |
| 479 | <version>${spring.osgi.version}</version> |
| 480 | </dependency> |
| 481 | <dependency> |
| 482 | <groupId>org.springframework.osgi</groupId> |
| 483 | <artifactId>spring-osgi-extender</artifactId> |
| 484 | <version>${spring.osgi.version}</version> |
| 485 | </dependency> |
| 486 | <dependency> |
| 487 | <groupId>org.springframework.osgi</groupId> |
Guillaume Nodet | 6a8e2f1 | 2009-08-24 07:27:30 +0000 | [diff] [blame] | 488 | <artifactId>spring-osgi-annotation</artifactId> |
| 489 | <version>${spring.osgi.version}</version> |
| 490 | </dependency> |
| 491 | <dependency> |
| 492 | <groupId>org.springframework.osgi</groupId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 493 | <artifactId>spring-osgi-test</artifactId> |
| 494 | <version>${spring.osgi.version}</version> |
| 495 | <exclusions> |
| 496 | <exclusion> |
| 497 | <groupId>org.springframework.osgi</groupId> |
| 498 | <artifactId>asm.osgi</artifactId> |
| 499 | </exclusion> |
| 500 | <exclusion> |
| 501 | <groupId>org.junit</groupId> |
| 502 | <artifactId>com.springsource.junit</artifactId> |
| 503 | </exclusion> |
| 504 | <exclusion> |
| 505 | <groupId>org.objectweb.asm</groupId> |
| 506 | <artifactId>com.springsource.org.objectweb.asm</artifactId> |
| 507 | </exclusion> |
| 508 | </exclusions> |
| 509 | </dependency> |
| 510 | <dependency> |
| 511 | <groupId>org.springframework.osgi</groupId> |
| 512 | <artifactId>spring-osgi-extender</artifactId> |
| 513 | <version>${spring.osgi.version}</version> |
| 514 | </dependency> |
| 515 | <dependency> |
| 516 | <groupId>org.springframework.osgi</groupId> |
| 517 | <artifactId>spring-osgi-annotation</artifactId> |
| 518 | <version>${spring.osgi.version}</version> |
| 519 | </dependency> |
| 520 | <dependency> |
| 521 | <groupId>org.apache.mina</groupId> |
| 522 | <artifactId>mina-core</artifactId> |
| 523 | <version>${mina.version}</version> |
| 524 | </dependency> |
| 525 | <dependency> |
| 526 | <groupId>org.apache.servicemix.bundles</groupId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 527 | <artifactId>org.apache.servicemix.bundles.junit</artifactId> |
| 528 | <version>${junit.version}</version> |
| 529 | </dependency> |
| 530 | <dependency> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 531 | <groupId>log4j</groupId> |
| 532 | <artifactId>log4j</artifactId> |
| 533 | <version>${log4j.version}</version> |
| 534 | </dependency> |
| 535 | <dependency> |
Guillaume Nodet | f9b2bf4 | 2009-07-10 06:56:47 +0000 | [diff] [blame] | 536 | <groupId>jline</groupId> |
| 537 | <artifactId>jline</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 538 | <version>${jline.version}</version> |
Guillaume Nodet | f9b2bf4 | 2009-07-10 06:56:47 +0000 | [diff] [blame] | 539 | </dependency> |
| 540 | <dependency> |
| 541 | <groupId>org.fusesource.jansi</groupId> |
| 542 | <artifactId>jansi</artifactId> |
| 543 | <version>${jansi.version}</version> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 544 | </dependency> |
| 545 | <dependency> |
| 546 | <groupId>commons-logging</groupId> |
| 547 | <artifactId>commons-logging</artifactId> |
| 548 | <version>${commons.logging.version}</version> |
| 549 | </dependency> |
| 550 | <dependency> |
| 551 | <groupId>org.apache.maven.artifact</groupId> |
| 552 | <artifactId>maven-artifact</artifactId> |
| 553 | <version>3.0-alpha-1</version> |
| 554 | </dependency> |
| 555 | <dependency> |
| 556 | <groupId>org.apache.servicemix.bundles</groupId> |
| 557 | <artifactId>org.apache.servicemix.bundles.commons-io</artifactId> |
| 558 | <version>${commons.io.version}</version> |
| 559 | </dependency> |
| 560 | <dependency> |
| 561 | <groupId>org.apache.mina</groupId> |
| 562 | <artifactId>mina-core</artifactId> |
| 563 | <version>${mina.version}</version> |
| 564 | <exclusions> |
| 565 | <exclusion> |
Guillaume Nodet | 077bac5 | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 566 | <groupId>org.easymock</groupId> |
| 567 | <artifactId>easymock</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 568 | </exclusion> |
| 569 | <exclusion> |
Guillaume Nodet | 077bac5 | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 570 | <groupId>org.easymock</groupId> |
| 571 | <artifactId>easymockclassextension</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 572 | </exclusion> |
| 573 | </exclusions> |
| 574 | </dependency> |
| 575 | <dependency> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 576 | <groupId>org.slf4j</groupId> |
| 577 | <artifactId>slf4j-api</artifactId> |
| 578 | <version>1.4.3</version> |
| 579 | </dependency> |
| 580 | <dependency> |
| 581 | <groupId>org.slf4j</groupId> |
| 582 | <artifactId>slf4j-jdk14</artifactId> |
| 583 | <version>1.4.3</version> |
| 584 | </dependency> |
| 585 | <dependency> |
| 586 | <groupId>org.slf4j</groupId> |
| 587 | <artifactId>slf4j-nop</artifactId> |
| 588 | <version>1.4.3</version> |
| 589 | </dependency> |
| 590 | <dependency> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 591 | <groupId>org.ops4j.pax.logging</groupId> |
| 592 | <artifactId>pax-logging-api</artifactId> |
| 593 | <version>${pax.logging.version}</version> |
| 594 | </dependency> |
| 595 | <dependency> |
| 596 | <groupId>org.ops4j.pax.logging</groupId> |
| 597 | <artifactId>pax-logging-service</artifactId> |
| 598 | <version>${pax.logging.version}</version> |
| 599 | <exclusions> |
| 600 | <exclusion> |
| 601 | <groupId>log4j</groupId> |
| 602 | <artifactId>log4j</artifactId> |
| 603 | </exclusion> |
| 604 | </exclusions> |
| 605 | </dependency> |
| 606 | <dependency> |
| 607 | <groupId>org.ops4j.pax.url</groupId> |
| 608 | <artifactId>pax-url-mvn</artifactId> |
| 609 | <version>${pax.url.version}</version> |
| 610 | </dependency> |
| 611 | <dependency> |
| 612 | <groupId>org.ops4j.pax.url</groupId> |
| 613 | <artifactId>pax-url-wrap</artifactId> |
| 614 | <version>${pax.url.version}</version> |
| 615 | </dependency> |
| 616 | <dependency> |
| 617 | <groupId>org.apache.geronimo.specs</groupId> |
| 618 | <artifactId>geronimo-servlet_2.5_spec</artifactId> |
| 619 | <version>${geronimo.servlet.version}</version> |
| 620 | </dependency> |
| 621 | <dependency> |
| 622 | <groupId>org.apache.geronimo.specs</groupId> |
| 623 | <artifactId>geronimo-annotation_1.0_spec</artifactId> |
| 624 | <version>${geronimo.annotation.version}</version> |
| 625 | </dependency> |
| 626 | <dependency> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 627 | <groupId>org.easymock</groupId> |
| 628 | <artifactId>easymock</artifactId> |
| 629 | <version>${easymock.version}</version> |
| 630 | </dependency> |
| 631 | <dependency> |
| 632 | <groupId>org.apache.sshd</groupId> |
| 633 | <artifactId>sshd-core</artifactId> |
| 634 | <version>${sshd.version}</version> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 635 | </dependency> |
| 636 | <dependency> |
| 637 | <groupId>org.osgi</groupId> |
Guillaume Nodet | 077bac5 | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 638 | <artifactId>org.osgi.impl.bundle.jmx</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 639 | <version>${osgi.jmx.version}</version> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 640 | </dependency> |
Guillaume Nodet | 5c1894e | 2009-04-29 16:35:06 +0000 | [diff] [blame] | 641 | <dependency> |
| 642 | <groupId>org.ops4j.pax.exam</groupId> |
| 643 | <artifactId>pax-exam</artifactId> |
| 644 | <version>${pax.exam.version}</version> |
| 645 | </dependency> |
| 646 | <dependency> |
| 647 | <groupId>org.ops4j.pax.exam</groupId> |
| 648 | <artifactId>pax-exam-junit</artifactId> |
| 649 | <version>${pax.exam.version}</version> |
| 650 | </dependency> |
| 651 | <dependency> |
| 652 | <groupId>org.ops4j.pax.exam</groupId> |
| 653 | <artifactId>pax-exam-container-default</artifactId> |
| 654 | <version>${pax.exam.version}</version> |
| 655 | </dependency> |
| 656 | <dependency> |
| 657 | <groupId>org.ops4j.pax.exam</groupId> |
| 658 | <artifactId>pax-exam-junit-extender-impl</artifactId> |
| 659 | <version>${pax.exam.version}</version> |
| 660 | </dependency> |
Guillaume Nodet | 350b150 | 2009-05-05 15:46:15 +0000 | [diff] [blame] | 661 | <dependency> |
| 662 | <groupId>org.eclipse</groupId> |
| 663 | <artifactId>osgi</artifactId> |
| 664 | <version>${equinox.version}</version> |
Guillaume Nodet | 4d838bd | 2009-08-10 08:16:33 +0000 | [diff] [blame] | 665 | </dependency> |
Gert Vanthienen | 971f933 | 2009-06-06 13:57:36 +0000 | [diff] [blame] | 666 | <dependency> |
| 667 | <groupId>javax.servlet</groupId> |
| 668 | <artifactId>servlet-api</artifactId> |
| 669 | <version>${servlet.api.version}</version> |
Guillaume Nodet | 350b150 | 2009-05-05 15:46:15 +0000 | [diff] [blame] | 670 | </dependency> |
Guillaume Nodet | fcf2d34 | 2009-06-18 20:57:23 +0000 | [diff] [blame] | 671 | <dependency> |
| 672 | <groupId>org.apache.geronimo</groupId> |
| 673 | <artifactId>blueprint-bundle</artifactId> |
| 674 | <version>${geronimo.blueprint.version}</version> |
Guillaume Nodet | 4d838bd | 2009-08-10 08:16:33 +0000 | [diff] [blame] | 675 | <exclusions> |
| 676 | <exclusion> |
| 677 | <groupId>org.apache.felix</groupId> |
| 678 | <artifactId>javax.servlet</artifactId> |
| 679 | </exclusion> |
| 680 | </exclusions> |
Guillaume Nodet | fcf2d34 | 2009-06-18 20:57:23 +0000 | [diff] [blame] | 681 | </dependency> |
Guillaume Nodet | 077bac5 | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 682 | <dependency> |
| 683 | <groupId>org.apache.felix.gogo</groupId> |
| 684 | <artifactId>org.apache.felix.gogo.runtime</artifactId> |
| 685 | <version>${felix.gogo.version}</version> |
| 686 | </dependency> |
| 687 | <dependency> |
| 688 | <groupId>org.apache.felix.gogo</groupId> |
| 689 | <artifactId>org.apache.felix.gogo.commands</artifactId> |
| 690 | <version>${felix.gogo.version}</version> |
| 691 | </dependency> |
Guillaume Nodet | 4d838bd | 2009-08-10 08:16:33 +0000 | [diff] [blame] | 692 | <dependency> |
| 693 | <groupId>org.ops4j.pax.runner</groupId> |
| 694 | <artifactId>pax-runner-no-jcl</artifactId> |
| 695 | <version>${pax.runner.version}</version> |
| 696 | </dependency> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 697 | </dependencies> |
| 698 | </dependencyManagement> |
| 699 | |
| 700 | <build> |
| 701 | <defaultGoal>install</defaultGoal> |
| 702 | |
| 703 | <pluginManagement> |
| 704 | <plugins> |
| 705 | <plugin> |
| 706 | <groupId>org.apache.maven.plugins</groupId> |
| 707 | <artifactId>maven-eclipse-plugin</artifactId> |
| 708 | <version>2.4</version> |
| 709 | <configuration> |
| 710 | <outputDirectory>${basedir}/eclipse-classes</outputDirectory> |
| 711 | <downloadSources>true</downloadSources> |
| 712 | <downloadJavadocs>true</downloadJavadocs> |
| 713 | </configuration> |
| 714 | </plugin> |
| 715 | <plugin> |
| 716 | <groupId>org.apache.maven.plugins</groupId> |
| 717 | <artifactId>maven-release-plugin</artifactId> |
| 718 | <version>2.0-beta-7</version> |
| 719 | <configuration> |
| 720 | <useReleaseProfile>false</useReleaseProfile> |
| 721 | <preparationGoals>clean verify install</preparationGoals> |
| 722 | <goals>deploy</goals> |
| 723 | <arguments>-Prelease,deploy</arguments> |
| 724 | <autoVersionSubmodules>true</autoVersionSubmodules> |
| 725 | </configuration> |
| 726 | </plugin> |
| 727 | <plugin> |
| 728 | <groupId>org.apache.felix</groupId> |
| 729 | <artifactId>maven-bundle-plugin</artifactId> |
| 730 | <version>${felix.plugin.version}</version> |
| 731 | <extensions>true</extensions> |
| 732 | </plugin> |
| 733 | <plugin> |
| 734 | <groupId>org.apache.maven.plugins</groupId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 735 | <artifactId>maven-idea-plugin</artifactId> |
| 736 | <version>2.1</version> |
| 737 | <configuration> |
| 738 | <downloadSources>true</downloadSources> |
| 739 | <downloadJavadocs>true</downloadJavadocs> |
| 740 | </configuration> |
| 741 | </plugin> |
| 742 | <plugin> |
| 743 | <groupId>org.apache.maven.plugins</groupId> |
| 744 | <artifactId>maven-surefire-plugin</artifactId> |
| 745 | <version>2.3.1</version> |
| 746 | </plugin> |
| 747 | <plugin> |
| 748 | <groupId>org.apache.maven.plugins</groupId> |
| 749 | <artifactId>maven-shade-plugin</artifactId> |
| 750 | <version>1.2</version> |
| 751 | </plugin> |
| 752 | <plugin> |
| 753 | <groupId>org.apache.maven.plugins</groupId> |
| 754 | <artifactId>maven-resources-plugin</artifactId> |
| 755 | <version>2.3</version> |
| 756 | </plugin> |
| 757 | <plugin> |
| 758 | <groupId>org.apache.servicemix.tooling</groupId> |
| 759 | <artifactId>depends-maven-plugin</artifactId> |
| 760 | <version>${depends.maven.plugin.version}</version> |
| 761 | </plugin> |
| 762 | <plugin> |
| 763 | <groupId>org.apache.maven.plugins</groupId> |
| 764 | <artifactId>maven-source-plugin</artifactId> |
| 765 | <version>2.0.4</version> |
| 766 | </plugin> |
| 767 | <plugin> |
| 768 | <groupId>org.apache.maven.plugins</groupId> |
| 769 | <artifactId>maven-assembly-plugin</artifactId> |
| 770 | <version>2.2-beta-3</version> |
| 771 | </plugin> |
| 772 | </plugins> |
| 773 | </pluginManagement> |
| 774 | <plugins> |
| 775 | <plugin> |
| 776 | <groupId>org.apache.maven.plugins</groupId> |
Guillaume Nodet | b9103c8 | 2009-05-11 14:33:35 +0000 | [diff] [blame] | 777 | <artifactId>maven-compiler-plugin</artifactId> |
| 778 | <version>2.0.2</version> |
| 779 | <configuration> |
| 780 | <source>1.5</source> |
| 781 | <target>1.5</target> |
| 782 | <maxmem>256M</maxmem> |
| 783 | <fork>${compiler.fork}</fork> |
| 784 | </configuration> |
| 785 | </plugin> |
| 786 | <plugin> |
| 787 | <groupId>org.apache.maven.plugins</groupId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 788 | <artifactId>maven-dependency-plugin</artifactId> |
| 789 | <version>2.0</version> |
| 790 | <executions> |
| 791 | <execution> |
| 792 | <id>copy-legal</id> |
| 793 | <phase>generate-resources</phase> |
| 794 | <goals> |
| 795 | <goal>copy</goal> |
| 796 | </goals> |
| 797 | <configuration> |
| 798 | <artifactItems> |
| 799 | <artifactItem> |
| 800 | <groupId>org.apache.servicemix.legal</groupId> |
| 801 | <artifactId>legal</artifactId> |
| 802 | <version>${servicemix.legal.version}</version> |
| 803 | <type>xml</type> |
| 804 | <outputDirectory>target/legal/</outputDirectory> |
| 805 | </artifactItem> |
| 806 | </artifactItems> |
| 807 | <stripVersion>true</stripVersion> |
| 808 | </configuration> |
| 809 | </execution> |
| 810 | </executions> |
| 811 | <dependencies> |
| 812 | <dependency> |
| 813 | <groupId>org.apache.servicemix.legal</groupId> |
| 814 | <artifactId>legal</artifactId> |
| 815 | <version>${servicemix.legal.version}</version> |
| 816 | <type>xml</type> |
| 817 | </dependency> |
| 818 | </dependencies> |
| 819 | </plugin> |
| 820 | <plugin> |
| 821 | <artifactId>maven-remote-resources-plugin</artifactId> |
| 822 | <version>1.0</version> |
| 823 | <executions> |
| 824 | <execution> |
| 825 | <goals> |
| 826 | <goal>process</goal> |
| 827 | </goals> |
| 828 | <configuration> |
| 829 | <resourceBundles> |
| 830 | <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle> |
| 831 | </resourceBundles> |
| 832 | <supplementalModels> |
| 833 | <supplementalModel>target/legal/legal.xml</supplementalModel> |
| 834 | </supplementalModels> |
| 835 | <properties> |
| 836 | <addLicense>true</addLicense> |
| 837 | <addArtifact>true</addArtifact> |
| 838 | <projectName>Apache ServiceMix</projectName> |
| 839 | </properties> |
| 840 | </configuration> |
| 841 | </execution> |
| 842 | </executions> |
| 843 | </plugin> |
| 844 | </plugins> |
| 845 | </build> |
| 846 | |
| 847 | <reporting> |
| 848 | <plugins> |
| 849 | <plugin> |
| 850 | <groupId>org.apache.maven.plugins</groupId> |
| 851 | <artifactId>maven-javadoc-plugin</artifactId> |
| 852 | <version>2.3</version> |
| 853 | </plugin> |
| 854 | <plugin> |
| 855 | <groupId>org.apache.maven.plugins</groupId> |
| 856 | <artifactId>maven-jxr-plugin</artifactId> |
| 857 | <version>2.0</version> |
| 858 | </plugin> |
| 859 | </plugins> |
| 860 | </reporting> |
| 861 | |
| 862 | <profiles> |
| 863 | <profile> |
| 864 | <id>fastinstall</id> |
| 865 | <properties> |
| 866 | <maven.test.skip>true</maven.test.skip> |
| 867 | </properties> |
| 868 | </profile> |
| 869 | <profile> |
| 870 | <id>rat</id> |
| 871 | <build> |
| 872 | <plugins> |
| 873 | <plugin> |
| 874 | <groupId>org.codehaus.mojo</groupId> |
| 875 | <artifactId>rat-maven-plugin</artifactId> |
| 876 | <version>1.0-alpha-3</version> |
| 877 | <executions> |
| 878 | <execution> |
| 879 | <phase>verify</phase> |
| 880 | <goals> |
| 881 | <goal>check</goal> |
| 882 | </goals> |
| 883 | </execution> |
| 884 | </executions> |
| 885 | <configuration> |
| 886 | <reportFile>${project.build.directory}/${project.build.finalName}.rat</reportFile> |
| 887 | <excludes> |
| 888 | <exclude>**/target/**/*</exclude> |
| 889 | <!-- IDEA files --> |
| 890 | <exclude>**/*.iml</exclude> |
| 891 | <exclude>**/*.ipr</exclude> |
| 892 | <exclude>**/*.iws</exclude> |
| 893 | <!-- Eclipse files --> |
| 894 | <exclude>**/.*</exclude> |
| 895 | <exclude>**/eclipse-classes/**/*</exclude> |
| 896 | <exclude>**/dependency-reduced-pom.xml</exclude> |
| 897 | </excludes> |
| 898 | </configuration> |
| 899 | </plugin> |
| 900 | </plugins> |
| 901 | </build> |
| 902 | </profile> |
| 903 | <profile> |
| 904 | <id>release</id> |
| 905 | <build> |
| 906 | <plugins> |
| 907 | <!-- We want to deploy the artifact to a staging location for perusal --> |
| 908 | <plugin> |
| 909 | <inherited>true</inherited> |
| 910 | <artifactId>maven-deploy-plugin</artifactId> |
| 911 | <version>2.3</version> |
| 912 | <configuration> |
| 913 | <altDeploymentRepository>${deploy.altRepository}</altDeploymentRepository> |
| 914 | <updateReleaseInfo>true</updateReleaseInfo> |
| 915 | </configuration> |
| 916 | </plugin> |
| 917 | <!-- We want to sign the artifact, the POM, and all attached artifacts --> |
| 918 | <plugin> |
| 919 | <artifactId>maven-gpg-plugin</artifactId> |
| 920 | <version>1.0-alpha-4</version> |
| 921 | <executions> |
| 922 | <execution> |
| 923 | <goals> |
| 924 | <goal>sign</goal> |
| 925 | </goals> |
| 926 | </execution> |
| 927 | </executions> |
| 928 | </plugin> |
| 929 | </plugins> |
| 930 | </build> |
| 931 | </profile> |
| 932 | <profile> |
| 933 | <id>setup.eclipse</id> |
| 934 | <modules> |
| 935 | <module>assembly</module> |
| 936 | </modules> |
| 937 | <properties> |
| 938 | <eclipse.workspace.dir>${basedir}/../workspace</eclipse.workspace.dir> |
| 939 | </properties> |
| 940 | <build> |
| 941 | <defaultGoal>eclipse:eclipse</defaultGoal> |
| 942 | <plugins> |
| 943 | <plugin> |
| 944 | <groupId>org.apache.maven.plugins</groupId> |
| 945 | <artifactId>maven-eclipse-plugin</artifactId> |
| 946 | <inherited>false</inherited> |
| 947 | <executions> |
| 948 | <execution> |
| 949 | <id>setup.eclipse.workspace</id> |
| 950 | <phase>process-test-sources</phase> |
| 951 | <goals> |
| 952 | <goal>add-maven-repo</goal> |
| 953 | </goals> |
| 954 | <configuration> |
| 955 | <workspace>${eclipse.workspace.dir}</workspace> |
| 956 | </configuration> |
| 957 | </execution> |
| 958 | </executions> |
| 959 | </plugin> |
| 960 | </plugins> |
| 961 | </build> |
| 962 | </profile> |
| 963 | <profile> |
| 964 | <id>deploy</id> |
| 965 | <properties> |
| 966 | <createSourcesJar>true</createSourcesJar> |
| 967 | </properties> |
| 968 | <build> |
| 969 | <defaultGoal>deploy</defaultGoal> |
| 970 | <plugins> |
| 971 | <plugin> |
| 972 | <groupId>org.apache.maven.plugins</groupId> |
| 973 | <artifactId>maven-source-plugin</artifactId> |
| 974 | <version>2.0.4</version> |
| 975 | <executions> |
| 976 | <execution> |
| 977 | <id>attach-sources</id> |
| 978 | <goals> |
| 979 | <goal>jar</goal> |
| 980 | </goals> |
| 981 | </execution> |
| 982 | </executions> |
| 983 | </plugin> |
| 984 | <plugin> |
| 985 | <groupId>org.apache.maven.plugins</groupId> |
| 986 | <artifactId>maven-javadoc-plugin</artifactId> |
| 987 | <version>2.4</version> |
| 988 | <configuration> |
| 989 | <source>1.5</source> |
| 990 | </configuration> |
| 991 | <executions> |
| 992 | <execution> |
| 993 | <id>attach-javadocs</id> |
| 994 | <goals> |
| 995 | <goal>jar</goal> |
| 996 | </goals> |
| 997 | </execution> |
| 998 | </executions> |
| 999 | </plugin> |
| 1000 | </plugins> |
| 1001 | </build> |
| 1002 | </profile> |
| 1003 | </profiles> |
| 1004 | |
| 1005 | </project> |