blob: 5819b1ea42083046aa33c1e7abd68f5dfcd3436a [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<!--
3 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
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 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.
19-->
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">
22 <parent>
23 <groupId>ipojo.tests</groupId>
24 <artifactId>ipojo.tests</artifactId>
25 <version>1.5.0-SNAPSHOT</version>
26 </parent>
Clement Escoffierdfce6b32008-07-30 18:05:29 +000027 <groupId>ipojo.tests</groupId>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000028 <version>1.5.0-SNAPSHOT</version>
Clement Escoffierdfce6b32008-07-30 18:05:29 +000029 <modelVersion>4.0.0</modelVersion>
30 <packaging>bundle</packaging>
31 <name>iPOJO Event Admin Handler Test Suite</name>
32 <artifactId>tests.eventadmin.handler</artifactId>
33 <dependencies>
34 <dependency>
35 <groupId>org.apache.felix</groupId>
36 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier2fdda122010-04-29 15:53:58 +000037 <version>1.7.0-SNAPSHOT</version>
Clement Escoffierdfce6b32008-07-30 18:05:29 +000038 </dependency>
39 <dependency>
Clement Escoffier03e1db72010-05-01 10:21:51 +000040 <groupId>org.osgi</groupId>
Clement Escoffierdfce6b32008-07-30 18:05:29 +000041 <artifactId>org.osgi.core</artifactId>
Clement Escoffierdfce6b32008-07-30 18:05:29 +000042 </dependency>
43 <dependency>
44 <groupId>org.apache.felix</groupId>
Clement Escoffier9fc9a3c2008-08-11 09:55:34 +000045 <artifactId>org.apache.felix.ipojo.handler.eventadmin</artifactId>
Clement Escoffier2fdda122010-04-29 15:53:58 +000046 <version>1.5.0-SNAPSHOT</version>
Clement Escoffierdfce6b32008-07-30 18:05:29 +000047 </dependency>
48 <dependency>
49 <groupId>junit</groupId>
50 <artifactId>junit</artifactId>
51 <version>3.8.1</version>
52 </dependency>
53 <dependency>
Clement Escoffier18bfd022008-12-01 19:42:13 +000054 <groupId>org.apache.felix</groupId>
Clement Escoffierdfce6b32008-07-30 18:05:29 +000055 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000056 <version>1.1.0-SNAPSHOT</version>
Clement Escoffierdfce6b32008-07-30 18:05:29 +000057 </dependency>
Clement Escoffier03e1db72010-05-01 10:21:51 +000058 <dependency>
59 <groupId>org.osgi</groupId>
60 <artifactId>org.osgi.compendium</artifactId>
61 <version>4.0.0</version>
62 </dependency>
Clement Escoffierdfce6b32008-07-30 18:05:29 +000063 </dependencies>
64 <build>
65 <plugins>
66 <plugin>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffierdfce6b32008-07-30 18:05:29 +000069 <extensions>true</extensions>
70 <configuration>
71 <instructions>
72 <Private-Package>org.apache.felix.ipojo.test.*
73 </Private-Package>
74 <Test-Suite>
75 org.apache.felix.ipojo.test.EahTestSuite
76 </Test-Suite>
77 </instructions>
78 </configuration>
79 </plugin>
80 <plugin>
81 <groupId>org.apache.felix</groupId>
82 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierdfce6b32008-07-30 18:05:29 +000083 <executions>
84 <execution>
85 <goals>
86 <goal>ipojo-bundle</goal>
87 </goals>
88 <configuration>
89 <ignoreAnnotations>true</ignoreAnnotations>
90 </configuration>
91 </execution>
92 </executions>
93 </plugin>
94 </plugins>
95 </build>
96</project>