blob: 668c19c7553d9fd4b97554c9ac0bf04b7d35bf10 [file] [log] [blame]
Clement Escoffier77374832008-04-29 22:25:39 +00001<!--
2 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
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 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.
18-->
19<project>
20 <modelVersion>4.0.0</modelVersion>
21 <packaging>bundle</packaging>
22 <name>iPOJO Composite (Service Instance) Test Suite</name>
23 <artifactId>tests.composite.service.instance</artifactId>
24 <groupId>ipojo.tests</groupId>
Clement Escoffier218dbd12008-05-26 18:50:39 +000025 <version>0.9.0-SNAPSHOT</version>
Clement Escoffier77374832008-04-29 22:25:39 +000026 <dependencies>
27 <dependency>
28 <groupId>org.apache.felix</groupId>
29 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier218dbd12008-05-26 18:50:39 +000030 <version>0.9.0-SNAPSHOT</version>
Clement Escoffier77374832008-04-29 22:25:39 +000031 </dependency>
32 <dependency>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>org.apache.felix.ipojo.composite</artifactId>
Clement Escoffier218dbd12008-05-26 18:50:39 +000035 <version>0.9.0-SNAPSHOT</version>
Clement Escoffier77374832008-04-29 22:25:39 +000036 </dependency>
37 <dependency>
38 <groupId>org.apache.felix</groupId>
39 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier218dbd12008-05-26 18:50:39 +000040 <version>0.9.0-SNAPSHOT</version>
Clement Escoffier77374832008-04-29 22:25:39 +000041 </dependency>
42 <dependency>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>org.osgi.core</artifactId>
45 <version>1.0.0</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>ipojo.examples</groupId>
54 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
Clement Escoffier218dbd12008-05-26 18:50:39 +000055 <version>0.9.0-SNAPSHOT</version>
Clement Escoffier77374832008-04-29 22:25:39 +000056 </dependency>
57 <dependency>
58 <groupId>ipojo.tests</groupId>
59 <artifactId>tests.composite</artifactId>
Clement Escoffier218dbd12008-05-26 18:50:39 +000060 <version>0.9.0-SNAPSHOT</version>
Clement Escoffier77374832008-04-29 22:25:39 +000061 </dependency>
62 </dependencies>
63 <build>
64 <plugins>
65 <plugin>
66 <groupId>org.apache.felix</groupId>
67 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier9fc9a3c2008-08-11 09:55:34 +000068 <version>1.4.2</version>
Clement Escoffier77374832008-04-29 22:25:39 +000069 <extensions>true</extensions>
70 <configuration>
71 <instructions>
72 <Bundle-SymbolicName>
73 ${pom.artifactId}
74 </Bundle-SymbolicName>
75 <Private-Package>
Clement Escoffier130ca572008-10-13 07:33:03 +000076 org.apache.felix.ipojo.test.composite.instantiator*, org.apache.felix.ipojo.test.composite.instance, org.apache.felix.ipojo.test.instance
Clement Escoffier77374832008-04-29 22:25:39 +000077 </Private-Package>
Clement Escoffier130ca572008-10-13 07:33:03 +000078 <Export-Package>org.apache.felix.ipojo.test.instance.service</Export-Package>
Clement Escoffier77374832008-04-29 22:25:39 +000079 <Test-Suite>
80 org.apache.felix.ipojo.test.composite.instantiator.InstantiatorTestSuite
81 </Test-Suite>
82 </instructions>
83 </configuration>
84 </plugin>
85 <plugin>
86 <groupId>org.apache.felix</groupId>
87 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier218dbd12008-05-26 18:50:39 +000088 <version>0.9.0-SNAPSHOT</version>
Clement Escoffier77374832008-04-29 22:25:39 +000089 <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>
100 </plugins>
101 </build>
102</project>