blob: 1595e270b28760ccc3a295ea749bad9dab04808e [file] [log] [blame]
Clement Escoffier39558712008-07-30 18:05:29 +00001<?xml version="1.0" encoding="UTF-8"?>
Clement Escoffierf4622e52010-05-01 10:21:51 +00002<!--
Clement Escoffier857cb152010-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 Escoffierf4622e52010-05-01 10:21:51 +000010
Clement Escoffier857cb152010-05-16 16:15:12 +000011 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffierf4622e52010-05-01 10:21:51 +000012
Clement Escoffier857cb152010-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 Escoffierf4622e52010-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 Escoffier857cb152010-05-16 16:15:12 +000022 <parent>
23 <groupId>ipojo.tests</groupId>
24 <artifactId>ipojo.tests</artifactId>
25 <version>1.5.0-SNAPSHOT</version>
26 </parent>
27 <groupId>ipojo.tests</groupId>
Clement Escoffier345e79a2011-02-23 10:36:42 +000028 <version>${ipojo.eah.snapshot}</version>
Clement Escoffier857cb152010-05-16 16:15:12 +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>
Clement Escoffier28429622010-10-06 16:56:15 +000033
Clement Escoffier345e79a2011-02-23 10:36:42 +000034 <dependencies>
35 <dependency>
36 <groupId>org.apache.felix</groupId>
37 <artifactId>org.apache.felix.ipojo</artifactId>
38 </dependency>
39 <dependency>
40 <groupId>org.osgi</groupId>
41 <artifactId>org.osgi.core</artifactId>
42 </dependency>
43 <dependency>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>org.apache.felix.ipojo.handler.eventadmin</artifactId>
46 <version>${ipojo.eah.snapshot}</version>
47 </dependency>
48 <dependency>
49 <groupId>junit</groupId>
50 <artifactId>junit</artifactId>
51 <version>3.8.1</version>
52 </dependency>
53 <dependency>
54 <groupId>org.apache.felix</groupId>
55 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
56 <version>1.1.0-SNAPSHOT</version>
57 </dependency>
58 <dependency>
59 <groupId>org.osgi</groupId>
60 <artifactId>org.osgi.compendium</artifactId>
61 <version>4.0.0</version>
62 </dependency>
63 <dependency>
64 <groupId>org.apache.felix</groupId>
65 <artifactId>org.apache.felix.eventadmin</artifactId>
66 <version>1.2.2</version>
67 <scope>test</scope>
68 </dependency>
69 </dependencies>
Clement Escoffier857cb152010-05-16 16:15:12 +000070 <build>
71 <plugins>
72 <plugin>
73 <groupId>org.apache.felix</groupId>
74 <artifactId>maven-bundle-plugin</artifactId>
75 <extensions>true</extensions>
76 <configuration>
77 <instructions>
78 <Private-Package>org.apache.felix.ipojo.test.*
79 </Private-Package>
80 <Test-Suite>
81 org.apache.felix.ipojo.test.EahTestSuite
82 </Test-Suite>
83 </instructions>
84 </configuration>
85 </plugin>
86 <plugin>
87 <groupId>org.apache.felix</groupId>
88 <artifactId>maven-ipojo-plugin</artifactId>
89 <executions>
90 <execution>
91 <goals>
92 <goal>ipojo-bundle</goal>
93 </goals>
94 <configuration>
95 <ignoreAnnotations>true</ignoreAnnotations>
96 </configuration>
97 </execution>
98 </executions>
99 </plugin>
Clement Escoffier28429622010-10-06 16:56:15 +0000100 <plugin>
Clement Escoffier345e79a2011-02-23 10:36:42 +0000101 <groupId>org.apache.felix</groupId>
102 <artifactId>maven-junit4osgi-plugin
103 </artifactId>
104 <version>1.1.0-SNAPSHOT</version>
105 <executions>
106 <execution>
107 <goals>
108 <goal>test</goal>
109 </goals>
110 <configuration>
111 <hideOutputs>false</hideOutputs>
112 <logService>false</logService>
113 <configuration>
114 <org.osgi.http.port>8083</org.osgi.http.port>
115 </configuration>
116 </configuration>
117 </execution>
118 </executions>
119 </plugin>
Clement Escoffier857cb152010-05-16 16:15:12 +0000120 </plugins>
121 </build>
Clement Escoffier39558712008-07-30 18:05:29 +0000122</project>