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 | --> |
| 20 | |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | |
| 23 | <parent> |
Gert Vanthienen | f54a839 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 24 | <groupId>org.apache.felix.karaf</groupId> |
Guillaume Nodet | 60dbfd7 | 2009-05-11 14:33:35 +0000 | [diff] [blame] | 25 | <artifactId>karaf</artifactId> |
Chris Custine | f6a85b3 | 2010-02-19 07:50:10 +0000 | [diff] [blame] | 26 | <version>1.5.0-SNAPSHOT</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 | 5906117 | 2009-04-29 16:35:06 +0000 | [diff] [blame] | 30 | <artifactId>itests</artifactId> |
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 31 | <packaging>jar</packaging> |
Chris Custine | f6a85b3 | 2010-02-19 07:50:10 +0000 | [diff] [blame] | 32 | <version>1.5.0-SNAPSHOT</version> |
Gert Vanthienen | f54a839 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 33 | <name>Apache Felix Karaf :: ITests</name> |
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 34 | |
| 35 | <description> |
Guillaume Nodet | 5906117 | 2009-04-29 16:35:06 +0000 | [diff] [blame] | 36 | Integration tests |
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 37 | </description> |
| 38 | |
Guillaume Nodet | e73545e | 2009-09-18 20:25:06 +0000 | [diff] [blame] | 39 | <properties> |
| 40 | <appendedResourcesDirectory>${basedir}/../etc/appended-resources</appendedResourcesDirectory> |
| 41 | </properties> |
| 42 | |
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 43 | <dependencies> |
Guillaume Nodet | cbb5cb5 | 2009-04-30 07:04:50 +0000 | [diff] [blame] | 44 | <!-- This is required to be first so that pax-exam classloader is not messed up with a newer version of felix |
| 45 | which would lead to java.lang.NoSuchMethodError: org.apache.felix.framework.Logger.<init>(I)V --> |
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 46 | <dependency> |
Guillaume Nodet | 5906117 | 2009-04-29 16:35:06 +0000 | [diff] [blame] | 47 | <groupId>org.apache.felix</groupId> |
| 48 | <artifactId>org.apache.felix.framework</artifactId> |
| 49 | <version>1.0.0</version> |
| 50 | </dependency> |
Guillaume Nodet | cbb5cb5 | 2009-04-30 07:04:50 +0000 | [diff] [blame] | 51 | <!-- This is required to be first so that pax-exam classloader is not messed up with a newer version of felix |
| 52 | which would lead to java.lang.RuntimeException: Could not create [service.obr] --> |
Guillaume Nodet | 5906117 | 2009-04-29 16:35:06 +0000 | [diff] [blame] | 53 | <dependency> |
Guillaume Nodet | cbb5cb5 | 2009-04-30 07:04:50 +0000 | [diff] [blame] | 54 | <groupId>org.apache.felix</groupId> |
| 55 | <artifactId>org.apache.felix.bundlerepository</artifactId> |
| 56 | <version>1.2.1</version> |
| 57 | </dependency> |
| 58 | |
Guillaume Nodet | a446ec2 | 2010-02-03 12:23:27 +0000 | [diff] [blame] | 59 | <dependency> |
| 60 | <groupId>org.apache.felix.karaf.tooling</groupId> |
| 61 | <artifactId>org.apache.felix.karaf.tooling.testing</artifactId> |
| 62 | <scope>test</scope> |
| 63 | </dependency> |
Guillaume Nodet | 7341aab | 2010-02-03 15:18:50 +0000 | [diff] [blame] | 64 | </dependencies> |
Guillaume Nodet | 5906117 | 2009-04-29 16:35:06 +0000 | [diff] [blame] | 65 | |
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 66 | <build> |
| 67 | <plugins> |
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 68 | <!-- generate dependencies versions --> |
| 69 | <plugin> |
| 70 | <groupId>org.apache.servicemix.tooling</groupId> |
| 71 | <artifactId>depends-maven-plugin</artifactId> |
Guillaume Nodet | 0bac11c | 2009-09-21 08:05:12 +0000 | [diff] [blame] | 72 | <version>1.1</version> |
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 73 | <executions> |
| 74 | <execution> |
| 75 | <id>generate-depends-file</id> |
| 76 | <goals> |
| 77 | <goal>generate-depends-file</goal> |
| 78 | </goals> |
| 79 | </execution> |
| 80 | </executions> |
| 81 | </plugin> |
| 82 | </plugins> |
| 83 | </build> |
| 84 | |
| 85 | <profiles> |
| 86 | <profile> |
| 87 | <id>ci-build-profile</id> |
| 88 | <activation> |
| 89 | <property> |
| 90 | <name>maven.repo.local</name> |
| 91 | </property> |
| 92 | </activation> |
| 93 | <build> |
| 94 | <plugins> |
| 95 | <plugin> |
| 96 | <groupId>org.apache.maven.plugins</groupId> |
| 97 | <artifactId>maven-surefire-plugin</artifactId> |
| 98 | <configuration> |
| 99 | <!-- when the local repo location has been specified, we need to pass on this information to PAX mvn url --> |
| 100 | <argLine>-Dorg.ops4j.pax.url.mvn.localRepository=${maven.repo.local}</argLine> |
| 101 | </configuration> |
| 102 | </plugin> |
| 103 | </plugins> |
| 104 | </build> |
| 105 | </profile> |
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 106 | </profiles> |
| 107 | |
| 108 | </project> |