blob: e50f47c265a8a45c19310f2c6de6b70ed288692b [file] [log] [blame]
Clement Escoffiera8e58ab2008-05-07 20:11:29 +00001<!--
Clement Escoffier95358cb2011-08-18 11:36:08 +00002 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 Escoffierc80b73d2009-07-03 13:16:24 +00009
Clement Escoffier95358cb2011-08-18 11:36:08 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffierc80b73d2009-07-03 13:16:24 +000011
Clement Escoffier95358cb2011-08-18 11:36:08 +000012 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 Escoffiera8e58ab2008-05-07 20:11:29 +000018-->
Clement Escoffierf4622e52010-05-01 10:21:51 +000019<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">
21 <parent>
Clement Escoffier95358cb2011-08-18 11:36:08 +000022 <groupId>ipojo.tests</groupId>
23 <artifactId>ipojo.tests</artifactId>
24 <version>1.5.0-SNAPSHOT</version>
25 <relativePath>../../pom.xml</relativePath>
Clement Escoffierf4622e52010-05-01 10:21:51 +000026 </parent>
27
Clement Escoffier95358cb2011-08-18 11:36:08 +000028 <modelVersion>4.0.0</modelVersion>
29 <packaging>bundle</packaging>
30 <name>iPOJO Composite (Service Providing) Test Suite</name>
31 <artifactId>tests.composite.service.providing</artifactId>
32 <groupId>ipojo.tests</groupId>
33 <version>${ipojo.composite.snapshot}</version>
34 <dependencies>
35 <dependency>
36 <groupId>org.apache.felix</groupId>
37 <artifactId>org.apache.felix.ipojo</artifactId>
38 </dependency>
39 <dependency>
40 <groupId>org.apache.felix</groupId>
41 <artifactId>org.apache.felix.ipojo.composite</artifactId>
42 <version>${ipojo.composite.snapshot}</version>
43 </dependency>
44 <dependency>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
47 </dependency>
48 <dependency>
49 <groupId>org.osgi</groupId>
50 <artifactId>org.osgi.core</artifactId>
51 </dependency>
52 <dependency>
53 <groupId>org.osgi</groupId>
54 <artifactId>org.osgi.compendium</artifactId>
55 <version>4.0.0</version>
56 </dependency>
57 <dependency>
58 <groupId>junit</groupId>
59 <artifactId>junit</artifactId>
60 <version>3.8.1</version>
61 </dependency>
62 <dependency>
63 <groupId>org.apache.felix</groupId>
64 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
65 <version>1.1.0-SNAPSHOT</version>
66 </dependency>
67 <dependency>
68 <groupId>ipojo.tests</groupId>
69 <artifactId>tests.composite</artifactId>
70 <version>${project.version}</version>
71 </dependency>
72 </dependencies>
73 <build>
74 <plugins>
75 <plugin>
76 <groupId>org.apache.felix</groupId>
77 <artifactId>maven-bundle-plugin</artifactId>
78 <extensions>true</extensions>
79 <configuration>
80 <instructions>
81 <Bundle-SymbolicName>
82 ${project.artifactId}
83 </Bundle-SymbolicName>
84 <Private-Package>
85 org.apache.felix.ipojo.test.composite.provides, org.apache.felix.ipojo.test.composite.test
86 </Private-Package>
87 <Test-Suite>
88 org.apache.felix.ipojo.test.composite.test.CompositeTest, org.apache.felix.ipojo.test.composite.provides.ProvidesTestSuite
89 </Test-Suite>
90 </instructions>
91 </configuration>
92 </plugin>
93 <plugin>
94 <groupId>org.apache.felix</groupId>
95 <artifactId>maven-ipojo-plugin</artifactId>
96 <executions>
97 <execution>
98 <goals>
99 <goal>ipojo-bundle</goal>
100 </goals>
101 <configuration>
102 <ignoreAnnotations>true</ignoreAnnotations>
103 </configuration>
104 </execution>
105 </executions>
106 </plugin>
107 </plugins>
108 </build>
Clement Escoffiera8e58ab2008-05-07 20:11:29 +0000109</project>