Clement Escoffier | 03e1db7 | 2010-05-01 10:21:51 +0000 | [diff] [blame] | 1 | <!-- |
Clement Escoffier | 8768456 | 2011-08-18 11:36:08 +0000 | [diff] [blame] | 2 | Licensed to the Apache Software Foundation (ASF) under one |
| 3 | or more contributor license agreements. See the NOTICE file |
| 4 | distributed with this work for additional information |
| 5 | regarding copyright ownership. The ASF licenses this file |
| 6 | to you under the Apache License, Version 2.0 (the |
| 7 | "License"); you may not use this file except in compliance |
| 8 | with the License. You may obtain a copy of the License at |
Clement Escoffier | 03e1db7 | 2010-05-01 10:21:51 +0000 | [diff] [blame] | 9 | |
Clement Escoffier | 8768456 | 2011-08-18 11:36:08 +0000 | [diff] [blame] | 10 | http://www.apache.org/licenses/LICENSE-2.0 |
Clement Escoffier | 03e1db7 | 2010-05-01 10:21:51 +0000 | [diff] [blame] | 11 | |
Clement Escoffier | 8768456 | 2011-08-18 11:36:08 +0000 | [diff] [blame] | 12 | Unless required by applicable law or agreed to in writing, |
| 13 | software distributed under the License is distributed on an |
| 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | KIND, either express or implied. See the License for the |
| 16 | specific language governing permissions and limitations |
| 17 | under the License. |
Clement Escoffier | 03e1db7 | 2010-05-01 10:21:51 +0000 | [diff] [blame] | 18 | --> |
| 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
Clement Escoffier | 8768456 | 2011-08-18 11:36:08 +0000 | [diff] [blame] | 21 | <parent> |
| 22 | <groupId>ipojo.tests</groupId> |
| 23 | <artifactId>ipojo.tests</artifactId> |
| 24 | <version>1.5.0-SNAPSHOT</version> |
| 25 | <relativePath>../../pom.xml</relativePath> |
| 26 | </parent> |
Clement Escoffier | ca9ad34 | 2009-07-12 08:11:01 +0000 | [diff] [blame] | 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <groupId>ipojo.tests</groupId> |
| 29 | <artifactId>tests.core.handler</artifactId> |
| 30 | <name>iPOJO Handler Mechanism Test Suite</name> |
Clement Escoffier | 8407505 | 2011-02-23 10:36:42 +0000 | [diff] [blame] | 31 | <version>${ipojo.core.snapshot}</version> |
Clement Escoffier | ca9ad34 | 2009-07-12 08:11:01 +0000 | [diff] [blame] | 32 | <description>Test the handler mechanism</description> |
| 33 | |
| 34 | <build> |
| 35 | <plugins> |
| 36 | <plugin> |
| 37 | <groupId>org.apache.maven.plugins</groupId> |
| 38 | <artifactId>maven-compiler-plugin</artifactId> |
| 39 | <configuration> |
| 40 | <source>1.5</source> |
| 41 | <target>1.5</target> |
| 42 | </configuration> |
| 43 | </plugin> |
| 44 | <plugin> |
| 45 | <groupId>org.apache.servicemix.tooling</groupId> |
| 46 | <artifactId>depends-maven-plugin</artifactId> |
Clement Escoffier | 03e1db7 | 2010-05-01 10:21:51 +0000 | [diff] [blame] | 47 | <version>1.2</version> |
Clement Escoffier | ca9ad34 | 2009-07-12 08:11:01 +0000 | [diff] [blame] | 48 | <executions> |
| 49 | <execution> |
| 50 | <id>generate-depends-file</id> |
| 51 | <goals> |
| 52 | <goal>generate-depends-file</goal> |
| 53 | </goals> |
| 54 | </execution> |
| 55 | </executions> |
| 56 | </plugin> |
Clement Escoffier | ca9ad34 | 2009-07-12 08:11:01 +0000 | [diff] [blame] | 57 | </plugins> |
| 58 | </build> |
| 59 | |
| 60 | <dependencies> |
| 61 | <dependency> |
| 62 | <groupId>org.apache.felix</groupId> |
| 63 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | 8407505 | 2011-02-23 10:36:42 +0000 | [diff] [blame] | 64 | <version>${ipojo.core.snapshot}</version> |
Clement Escoffier | ca9ad34 | 2009-07-12 08:11:01 +0000 | [diff] [blame] | 65 | </dependency> |
| 66 | |
Clement Escoffier | 29d9de1 | 2010-02-08 19:15:16 +0000 | [diff] [blame] | 67 | <!-- Pax Exam API: --> |
| 68 | <dependency> |
| 69 | <groupId>org.ops4j.pax.exam</groupId> |
| 70 | <artifactId>pax-exam</artifactId> |
| 71 | <version>1.2.0</version> |
| 72 | <scope>test</scope> |
| 73 | </dependency> |
| 74 | <!-- |
| 75 | During runtime Pax Exam will discover the OSGi container to use by |
| 76 | searching metadata available into classpath. Pax Exam comes with a |
| 77 | default container that uses [Pax Runner] for implementing the |
| 78 | container requirements: |
| 79 | --> |
| 80 | <dependency> |
| 81 | <groupId>org.ops4j.pax.exam</groupId> |
| 82 | <artifactId>pax-exam-container-default |
| 83 | </artifactId> |
| 84 | <version>1.2.0</version> |
| 85 | <scope>test</scope> |
| 86 | </dependency> |
| 87 | <!-- |
| 88 | If your test code is based on JUnit you will have to have the Junit |
| 89 | support artifact: |
| 90 | --> |
| 91 | <dependency> |
| 92 | <groupId>org.ops4j.pax.exam</groupId> |
| 93 | <artifactId>pax-exam-junit</artifactId> |
| 94 | <version>1.2.0</version> |
| 95 | <scope>test</scope> |
| 96 | </dependency> |
| 97 | <dependency> |
| 98 | <groupId>junit</groupId> |
| 99 | <artifactId>junit</artifactId> |
| 100 | <version>4.5</version> |
| 101 | <type>jar</type> |
| 102 | <scope>test</scope> |
| 103 | </dependency> |
| 104 | |
| 105 | <!-- TinyBundle --> |
| 106 | <dependency> |
| 107 | <groupId>org.ops4j.pax.swissbox</groupId> |
| 108 | <artifactId>pax-swissbox-tinybundles</artifactId> |
| 109 | <version>1.2.0</version> |
| 110 | <scope>test</scope> |
| 111 | </dependency> |
| 112 | <dependency> |
| 113 | <groupId>org.ops4j.base</groupId> |
| 114 | <artifactId>ops4j-base</artifactId> |
| 115 | <version>1.2.0</version> |
| 116 | <scope>test</scope> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>org.ops4j.pax.swissbox</groupId> |
| 120 | <artifactId>pax-swissbox-bnd</artifactId> |
| 121 | <version>1.2.0</version> |
| 122 | <scope>test</scope> |
| 123 | </dependency> |
| 124 | |
| 125 | <!-- mockito --> |
| 126 | <dependency> |
| 127 | <groupId>org.mockito</groupId> |
| 128 | <artifactId>mockito-all</artifactId> |
| 129 | <version>1.7</version> |
| 130 | <scope>test</scope> |
| 131 | </dependency> |
Clement Escoffier | 2fdda12 | 2010-04-29 15:53:58 +0000 | [diff] [blame] | 132 | |
Clement Escoffier | 8768456 | 2011-08-18 11:36:08 +0000 | [diff] [blame] | 133 | <dependency> |
Clement Escoffier | 03e1db7 | 2010-05-01 10:21:51 +0000 | [diff] [blame] | 134 | <groupId>org.ow2.chameleon.testing</groupId> |
| 135 | <artifactId>tinybundles-ipojo</artifactId> |
Clement Escoffier | 29d9de1 | 2010-02-08 19:15:16 +0000 | [diff] [blame] | 136 | </dependency> |
| 137 | <dependency> |
Clement Escoffier | 03e1db7 | 2010-05-01 10:21:51 +0000 | [diff] [blame] | 138 | <groupId>org.ow2.chameleon.testing</groupId> |
| 139 | <artifactId>osgi-helpers</artifactId> |
Clement Escoffier | 29d9de1 | 2010-02-08 19:15:16 +0000 | [diff] [blame] | 140 | </dependency> |
Clement Escoffier | ca9ad34 | 2009-07-12 08:11:01 +0000 | [diff] [blame] | 141 | </dependencies> |
| 142 | |
| 143 | <repositories> |
| 144 | <repository> |
| 145 | <id>ops4j.releases</id> |
| 146 | <name>OPS4J Release</name> |
| 147 | <url> http://repository.ops4j.org/maven2/</url> |
| 148 | <releases> |
| 149 | <enabled>true</enabled> |
| 150 | </releases> |
| 151 | <snapshots> |
| 152 | <enabled>false</enabled> |
| 153 | </snapshots> |
| 154 | </repository> |
| 155 | </repositories> |
| 156 | |
| 157 | </project> |