blob: 973522cad2b248d4ab4e430291876c514a8f31d7 [file] [log] [blame]
Clement Escoffier77374832008-04-29 22:25:39 +00001<!--
Clement Escoffieraf9ad1b2009-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 Escoffier0b93f382009-07-03 13:16:24 +00009
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier0b93f382009-07-03 13:16:24 +000011
Clement Escoffieraf9ad1b2009-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 Escoffier77374832008-04-29 22:25:39 +000018-->
19<project>
Clement Escoffieraf9ad1b2009-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>
30 <version>${pom.version}</version>
31 </dependency>
32 <dependency>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>org.apache.felix.ipojo.composite</artifactId>
35 <version>${pom.version}</version>
36 </dependency>
37 <dependency>
38 <groupId>org.apache.felix</groupId>
39 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
40 <version>${pom.version}</version>
41 </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 Escoffier77374832008-04-29 22:25:39 +0000101</project>