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