Clement Escoffier | a095881 | 2008-11-23 17:44:26 +0000 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Clement Escoffier | af9ad1b | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <groupId>ipojo.tests</groupId> |
| 5 | <artifactId>org.apache.felix.ipojo.integration-tests</artifactId> |
| 6 | <name>iPOJO Integration Tests</name> |
| 7 | <version>1.5.0-SNAPSHOT</version> |
| 8 | |
| 9 | <properties> |
| 10 | <ipojo.version>1.5.0-SNAPSHOT</ipojo.version> |
| 11 | </properties> |
| 12 | |
| 13 | <build> |
| 14 | <plugins> |
| 15 | <plugin> |
| 16 | <groupId>org.apache.felix</groupId> |
| 17 | <artifactId>maven-junit4osgi-plugin |
| 18 | </artifactId> |
| 19 | <version>1.1.0-SNAPSHOT</version> |
| 20 | <executions> |
| 21 | <execution> |
| 22 | <goals> |
| 23 | <goal>test</goal> |
| 24 | </goals> |
| 25 | <configuration> |
| 26 | <hideOutputs>true</hideOutputs> |
Clement Escoffier | 919e886 | 2009-09-28 07:12:33 +0000 | [diff] [blame] | 27 | <logService>false</logService> |
Clement Escoffier | af9ad1b | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 28 | <configuration> |
| 29 | <org.osgi.http.port>8083</org.osgi.http.port> |
| 30 | </configuration> |
| 31 | </configuration> |
| 32 | </execution> |
| 33 | </executions> |
| 34 | </plugin> |
| 35 | </plugins> |
| 36 | </build> |
| 37 | <reporting> |
| 38 | <plugins> |
| 39 | <plugin> |
| 40 | <groupId>org.apache.maven.plugins</groupId> |
| 41 | <artifactId>maven-surefire-report-plugin |
| 42 | </artifactId> |
| 43 | <version>2.4.3</version> |
| 44 | <configuration> |
| 45 | <showSucess>true</showSucess> |
| 46 | <reportsDirectories> |
| 47 | <param>target/junit4osgi-reports</param> |
| 48 | </reportsDirectories> |
| 49 | </configuration> |
| 50 | </plugin> |
| 51 | <plugin> |
| 52 | <groupId>org.codehaus.mojo</groupId> |
| 53 | <artifactId>cobertura-maven-plugin</artifactId> |
| 54 | </plugin> |
| 55 | </plugins> |
| 56 | </reporting> |
| 57 | |
| 58 | <dependencies> |
Clement Escoffier | a095881 | 2008-11-23 17:44:26 +0000 | [diff] [blame] | 59 | <!-- Manipulation --> |
Clement Escoffier | af9ad1b | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 60 | <dependency> |
| 61 | <groupId>ipojo.tests</groupId> |
| 62 | <artifactId>tests.manipulation.metadata |
| 63 | </artifactId> |
| 64 | <version>${ipojo.version}</version> |
| 65 | <scope>test</scope> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>ipojo.tests</groupId> |
| 69 | <artifactId>tests.manipulation</artifactId> |
| 70 | <version>${ipojo.version}</version> |
| 71 | <scope>test</scope> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>ipojo.tests</groupId> |
| 75 | <artifactId>tests.manipulation.primitives |
| 76 | </artifactId> |
| 77 | <version>${ipojo.version}</version> |
| 78 | <scope>test</scope> |
| 79 | </dependency> |
| 80 | <dependency> |
| 81 | <groupId>ipojo.tests</groupId> |
| 82 | <artifactId>tests.manipulation.creation |
| 83 | </artifactId> |
| 84 | <version>${ipojo.version}</version> |
| 85 | <scope>test</scope> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>ipojo.tests</groupId> |
| 89 | <artifactId>tests.manipulation.java5 |
| 90 | </artifactId> |
| 91 | <version>${ipojo.version}</version> |
| 92 | <scope>test</scope> |
| 93 | </dependency> |
Clement Escoffier | a095881 | 2008-11-23 17:44:26 +0000 | [diff] [blame] | 94 | |
Clement Escoffier | af9ad1b | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 95 | <!-- Core --> |
| 96 | <dependency> |
| 97 | <groupId>ipojo.tests</groupId> |
| 98 | <artifactId>tests.core.annotations</artifactId> |
| 99 | <version>${ipojo.version}</version> |
| 100 | <scope>test</scope> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>ipojo.tests</groupId> |
| 104 | <artifactId>tests.core.bad.configurations |
| 105 | </artifactId> |
| 106 | <version>${ipojo.version}</version> |
| 107 | <scope>test</scope> |
| 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>ipojo.tests</groupId> |
| 111 | <artifactId>tests.core.configuration |
| 112 | </artifactId> |
| 113 | <version>${ipojo.version}</version> |
| 114 | <scope>test</scope> |
| 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>ipojo.tests</groupId> |
| 118 | <artifactId>tests.core.external.handlers |
| 119 | </artifactId> |
| 120 | <version>${ipojo.version}</version> |
| 121 | <scope>test</scope> |
| 122 | </dependency> |
| 123 | <dependency> |
| 124 | <groupId>ipojo.tests</groupId> |
| 125 | <artifactId>tests.core.factories</artifactId> |
| 126 | <version>${ipojo.version}</version> |
| 127 | <scope>test</scope> |
| 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>ipojo.tests</groupId> |
| 131 | <artifactId>tests.core.lifecycle.callback |
| 132 | </artifactId> |
| 133 | <version>${ipojo.version}</version> |
| 134 | <scope>test</scope> |
| 135 | </dependency> |
| 136 | <dependency> |
| 137 | <groupId>ipojo.tests</groupId> |
| 138 | <artifactId>tests.core.lifecycle.controller |
| 139 | </artifactId> |
| 140 | <version>${ipojo.version}</version> |
| 141 | <scope>test</scope> |
| 142 | </dependency> |
| 143 | <dependency> |
| 144 | <groupId>ipojo.tests</groupId> |
| 145 | <artifactId>tests.core.ps</artifactId> |
| 146 | <version>${ipojo.version}</version> |
| 147 | <scope>test</scope> |
| 148 | </dependency> |
| 149 | <dependency> |
| 150 | <groupId>ipojo.tests</groupId> |
| 151 | <artifactId>tests.core.lifecycle.controller |
| 152 | </artifactId> |
| 153 | <version>${ipojo.version}</version> |
| 154 | <scope>test</scope> |
| 155 | </dependency> |
| 156 | <dependency> |
| 157 | <groupId>ipojo.tests</groupId> |
| 158 | <artifactId>tests.core.service.dependency |
| 159 | </artifactId> |
| 160 | <version>${ipojo.version}</version> |
| 161 | <scope>test</scope> |
| 162 | </dependency> |
| 163 | <dependency> |
| 164 | <groupId>ipojo.tests</groupId> |
| 165 | <artifactId>tests.core.service.dependency.bindingpolicy |
| 166 | </artifactId> |
| 167 | <version>${ipojo.version}</version> |
| 168 | <scope>test</scope> |
| 169 | </dependency> |
| 170 | <dependency> |
| 171 | <groupId>ipojo.tests</groupId> |
| 172 | <artifactId>tests.core.service.dependency.comparator |
| 173 | </artifactId> |
| 174 | <version>${ipojo.version}</version> |
| 175 | <scope>test</scope> |
| 176 | </dependency> |
| 177 | <dependency> |
| 178 | <groupId>ipojo.tests</groupId> |
| 179 | <artifactId>tests.core.service.dependency.filter |
| 180 | </artifactId> |
| 181 | <version>${ipojo.version}</version> |
| 182 | <scope>test</scope> |
| 183 | </dependency> |
| 184 | <dependency> |
| 185 | <artifactId>tests.core.ps.strategy</artifactId> |
| 186 | <groupId>ipojo.tests</groupId> |
| 187 | <version>${ipojo.version}</version> |
| 188 | <scope>test</scope> |
| 189 | </dependency> |
| 190 | |
| 191 | |
| 192 | <!-- Composite --> |
| 193 | <dependency> |
| 194 | <groupId>ipojo.tests</groupId> |
| 195 | <artifactId>tests.composite </artifactId> |
| 196 | <version>${ipojo.version}</version> |
| 197 | <scope>test</scope> |
| 198 | </dependency> |
| 199 | <dependency> |
| 200 | <groupId>ipojo.tests</groupId> |
| 201 | <artifactId>tests.composite.service.import-export |
| 202 | </artifactId> |
| 203 | <version>${ipojo.version}</version> |
| 204 | <scope>test</scope> |
| 205 | </dependency> |
| 206 | <dependency> |
| 207 | <groupId>ipojo.tests</groupId> |
| 208 | <artifactId>tests.composite.service.instance |
| 209 | </artifactId> |
| 210 | <version>${ipojo.version}</version> |
| 211 | <scope>test</scope> |
| 212 | </dependency> |
| 213 | <dependency> |
| 214 | <groupId>ipojo.tests</groupId> |
| 215 | <artifactId>tests.composite.service.providing |
| 216 | </artifactId> |
| 217 | <version>${ipojo.version}</version> |
| 218 | <scope>test</scope> |
| 219 | </dependency> |
Clement Escoffier | 8d88835 | 2008-12-10 12:29:41 +0000 | [diff] [blame] | 220 | |
Clement Escoffier | af9ad1b | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 221 | <!-- External handlers --> |
| 222 | |
| 223 | <dependency> |
| 224 | <groupId>ipojo.tests</groupId> |
| 225 | <artifactId>tests.eventadmin.handler |
| 226 | </artifactId> |
| 227 | <version>${ipojo.version}</version> |
| 228 | <scope>test</scope> |
| 229 | </dependency> |
| 230 | <dependency> |
| 231 | <groupId>ipojo.tests</groupId> |
| 232 | <artifactId>tests.temporal </artifactId> |
| 233 | <version>${ipojo.version}</version> |
| 234 | <scope>test</scope> |
| 235 | </dependency> |
| 236 | <dependency> |
| 237 | <groupId>ipojo.tests</groupId> |
| 238 | <artifactId>tests.whiteboard </artifactId> |
| 239 | <version>${ipojo.version}</version> |
| 240 | <scope>test</scope> |
| 241 | </dependency> |
| 242 | <!-- Utility bundles --> |
Clement Escoffier | 919e886 | 2009-09-28 07:12:33 +0000 | [diff] [blame] | 243 | |
Clement Escoffier | af9ad1b | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 244 | <dependency> |
| 245 | <groupId>org.apache.felix</groupId> |
| 246 | <artifactId>org.apache.felix.ipojo.handler.whiteboard</artifactId> |
| 247 | <version>${ipojo.version}</version> |
| 248 | <scope>test</scope> |
| 249 | </dependency> |
| 250 | <dependency> |
| 251 | <groupId>org.apache.felix</groupId> |
| 252 | <artifactId>org.apache.felix.ipojo.handler.temporal</artifactId> |
| 253 | <version>${ipojo.version}</version> |
| 254 | <scope>test</scope> |
| 255 | </dependency> |
| 256 | <dependency> |
| 257 | <groupId>org.apache.felix</groupId> |
| 258 | <artifactId>org.apache.felix.ipojo.handler.eventadmin</artifactId> |
| 259 | <version>${ipojo.version}</version> |
| 260 | <scope>test</scope> |
| 261 | </dependency> |
| 262 | <dependency> |
| 263 | <groupId>org.apache.felix</groupId> |
| 264 | <artifactId>org.apache.felix.eventadmin</artifactId> |
Clement Escoffier | 5f7d5a8 | 2010-02-24 18:15:44 +0000 | [diff] [blame^] | 265 | <version>1.2.2</version> |
Clement Escoffier | af9ad1b | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 266 | <scope>test</scope> |
| 267 | </dependency> |
| 268 | <dependency> |
| 269 | <groupId>org.apache.felix</groupId> |
| 270 | <artifactId>org.apache.felix.ipojo.composite</artifactId> |
| 271 | <version>${ipojo.version}</version> |
| 272 | <scope>test</scope> |
| 273 | </dependency> |
| 274 | </dependencies> |
| 275 | |
| 276 | <profiles> |
| 277 | <profile> |
| 278 | <id>configadmin</id> |
| 279 | <dependencies> |
| 280 | <dependency> |
| 281 | <groupId>ipojo.tests</groupId> |
| 282 | <artifactId>tests.core.configadmin</artifactId> |
| 283 | <version>${ipojo.version}</version> |
| 284 | <scope>test</scope> |
| 285 | </dependency> |
Clement Escoffier | 919e886 | 2009-09-28 07:12:33 +0000 | [diff] [blame] | 286 | <dependency> |
| 287 | <groupId>org.apache.felix</groupId> |
| 288 | <artifactId>org.apache.felix.configadmin</artifactId> |
| 289 | <version>1.2.4</version> |
| 290 | <scope>test</scope> |
| 291 | </dependency> |
Clement Escoffier | af9ad1b | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 292 | </dependencies> |
| 293 | </profile> |
| 294 | </profiles> |
| 295 | </project> |