blob: 2ee3f3d2e2d5715884a2d8b74f69818143ce9e64 [file] [log] [blame]
Clement Escoffiercdb4b172008-04-29 22:25:39 +00001<!--
Clement Escoffier4cb4ff32009-08-14 12:11:19 +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 Escoffier4cb4ff32009-08-14 12:11:19 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffierc80b73d2009-07-03 13:16:24 +000011
Clement Escoffier4cb4ff32009-08-14 12:11:19 +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 Escoffiercdb4b172008-04-29 22:25:39 +000018-->
19<project>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000020 <modelVersion>4.0.0</modelVersion>
21 <packaging>bundle</packaging>
22 <name>iPOJO Composite (Service Import/Export) Test Suite</name>
23 <artifactId>tests.composite.service.import-export</artifactId>
24 <groupId>ipojo.tests</groupId>
25 <version>1.5.0-SNAPSHOT</version>
26 <dependencies>
27 <dependency>
28 <groupId>org.apache.felix</groupId>
29 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier86ea4652010-04-29 15:53:58 +000030 <version>1.7.0-SNAPSHOT</version>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000031 </dependency>
32 <dependency>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>org.apache.felix.ipojo.composite</artifactId>
Clement Escoffier86ea4652010-04-29 15:53:58 +000035 <version>1.7.0-SNAPSHOT</version>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000036 </dependency>
37 <dependency>
38 <groupId>org.apache.felix</groupId>
39 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier86ea4652010-04-29 15:53:58 +000040 <version>1.4.0</version>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000041 </dependency>
42 <dependency>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>org.osgi.core</artifactId>
45 <version>1.0.1</version>
46 </dependency>
47 <dependency>
48 <groupId>junit</groupId>
49 <artifactId>junit</artifactId>
50 <version>3.8.1</version>
51 </dependency>
52 <dependency>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
55 <version>1.1.0-SNAPSHOT</version>
56 </dependency>
57 <dependency>
58 <groupId>ipojo.tests</groupId>
59 <artifactId>tests.composite</artifactId>
60 <version>${pom.version}</version>
61 </dependency>
62 </dependencies>
63 <build>
64 <plugins>
65 <plugin>
66 <groupId>org.apache.felix</groupId>
67 <artifactId>maven-bundle-plugin</artifactId>
68 <version>1.4.3</version>
69 <extensions>true</extensions>
70 <configuration>
71 <instructions>
72 <Bundle-SymbolicName>
73 ${pom.artifactId}
74 </Bundle-SymbolicName>
75 <Private-Package>
76 org.apache.felix.ipojo.test.composite.exporter, org.apache.felix.ipojo.test.composite.importer
77 </Private-Package>
78 <Test-Suite>
79 org.apache.felix.ipojo.test.composite.importer.ImportTestSuite, org.apache.felix.ipojo.test.composite.exporter.ExportTestSuite
80 </Test-Suite>
81 </instructions>
82 </configuration>
83 </plugin>
84 <plugin>
85 <groupId>org.apache.felix</groupId>
86 <artifactId>maven-ipojo-plugin</artifactId>
87 <version>${pom.version}</version>
88 <executions>
89 <execution>
90 <goals>
91 <goal>ipojo-bundle</goal>
92 </goals>
93 <configuration>
94 <ignoreAnnotations>true</ignoreAnnotations>
95 </configuration>
96 </execution>
97 </executions>
98 </plugin>
99 </plugins>
100 </build>
Clement Escoffiercdb4b172008-04-29 22:25:39 +0000101</project>