blob: b695b2b392b29a0a09f474f57bf53a930458912a [file] [log] [blame]
Clement Escoffierdfce6b32008-07-30 18:05:29 +00001<?xml version="1.0" encoding="UTF-8"?>
Clement Escoffier03e1db72010-05-01 10:21:51 +00002<!--
Clement Escoffier30120522010-05-16 16:15:12 +00003 Licensed to the Apache Software Foundation (ASF) under one
4 or more contributor license agreements. See the NOTICE file
5 distributed with this work for additional information
6 regarding copyright ownership. The ASF licenses this file
7 to you under the Apache License, Version 2.0 (the
8 "License"); you may not use this file except in compliance
9 with the License. You may obtain a copy of the License at
Clement Escoffier03e1db72010-05-01 10:21:51 +000010
Clement Escoffier30120522010-05-16 16:15:12 +000011 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier03e1db72010-05-01 10:21:51 +000012
Clement Escoffier30120522010-05-16 16:15:12 +000013 Unless required by applicable law or agreed to in writing,
14 software distributed under the License is distributed on an
15 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 KIND, either express or implied. See the License for the
17 specific language governing permissions and limitations
18 under the License.
Clement Escoffier03e1db72010-05-01 10:21:51 +000019-->
20<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Clement Escoffier30120522010-05-16 16:15:12 +000022 <parent>
23 <groupId>ipojo.tests</groupId>
24 <artifactId>ipojo.tests</artifactId>
25 <version>1.5.0-SNAPSHOT</version>
Clement Escoffier057f1582012-04-21 11:03:41 +000026 <relativePath>../../pom.xml</relativePath>
Clement Escoffier30120522010-05-16 16:15:12 +000027 </parent>
28 <groupId>ipojo.tests</groupId>
Clement Escoffier84075052011-02-23 10:36:42 +000029 <version>${ipojo.eah.snapshot}</version>
Clement Escoffier30120522010-05-16 16:15:12 +000030 <modelVersion>4.0.0</modelVersion>
31 <packaging>bundle</packaging>
32 <name>iPOJO Event Admin Handler Test Suite</name>
33 <artifactId>tests.eventadmin.handler</artifactId>
Clement Escoffier064a79e2010-10-06 16:56:15 +000034
Clement Escoffier84075052011-02-23 10:36:42 +000035 <dependencies>
36 <dependency>
37 <groupId>org.apache.felix</groupId>
38 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier057f1582012-04-21 11:03:41 +000039 <version>${ipojo.core.snapshot}</version>
Clement Escoffier84075052011-02-23 10:36:42 +000040 </dependency>
41 <dependency>
42 <groupId>org.osgi</groupId>
43 <artifactId>org.osgi.core</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>org.apache.felix</groupId>
47 <artifactId>org.apache.felix.ipojo.handler.eventadmin</artifactId>
48 <version>${ipojo.eah.snapshot}</version>
49 </dependency>
50 <dependency>
51 <groupId>junit</groupId>
52 <artifactId>junit</artifactId>
53 <version>3.8.1</version>
54 </dependency>
55 <dependency>
56 <groupId>org.apache.felix</groupId>
57 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
58 <version>1.1.0-SNAPSHOT</version>
59 </dependency>
60 <dependency>
61 <groupId>org.osgi</groupId>
62 <artifactId>org.osgi.compendium</artifactId>
63 <version>4.0.0</version>
64 </dependency>
65 <dependency>
66 <groupId>org.apache.felix</groupId>
67 <artifactId>org.apache.felix.eventadmin</artifactId>
68 <version>1.2.2</version>
69 <scope>test</scope>
70 </dependency>
71 </dependencies>
Clement Escoffier30120522010-05-16 16:15:12 +000072 <build>
73 <plugins>
74 <plugin>
75 <groupId>org.apache.felix</groupId>
76 <artifactId>maven-bundle-plugin</artifactId>
77 <extensions>true</extensions>
78 <configuration>
79 <instructions>
80 <Private-Package>org.apache.felix.ipojo.test.*
81 </Private-Package>
82 <Test-Suite>
83 org.apache.felix.ipojo.test.EahTestSuite
84 </Test-Suite>
85 </instructions>
86 </configuration>
87 </plugin>
88 <plugin>
89 <groupId>org.apache.felix</groupId>
90 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier057f1582012-04-21 11:03:41 +000091 <version>1.8.4</version>
Clement Escoffier30120522010-05-16 16:15:12 +000092 <executions>
93 <execution>
94 <goals>
95 <goal>ipojo-bundle</goal>
96 </goals>
97 <configuration>
98 <ignoreAnnotations>true</ignoreAnnotations>
99 </configuration>
100 </execution>
101 </executions>
102 </plugin>
Clement Escoffier064a79e2010-10-06 16:56:15 +0000103 <plugin>
Clement Escoffier84075052011-02-23 10:36:42 +0000104 <groupId>org.apache.felix</groupId>
105 <artifactId>maven-junit4osgi-plugin
106 </artifactId>
107 <version>1.1.0-SNAPSHOT</version>
108 <executions>
109 <execution>
110 <goals>
111 <goal>test</goal>
112 </goals>
113 <configuration>
114 <hideOutputs>false</hideOutputs>
Clement Escoffier84075052011-02-23 10:36:42 +0000115 </configuration>
116 </execution>
117 </executions>
118 </plugin>
Clement Escoffier30120522010-05-16 16:15:12 +0000119 </plugins>
120 </build>
Clement Escoffierdfce6b32008-07-30 18:05:29 +0000121</project>