blob: 2e01dc22eb1a0e5cb7c9e0a65e3004f412ba760c [file] [log] [blame]
Clement Escoffierce0e1e52008-03-28 15:33:36 +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
Clement Escoffier0b93f382009-07-03 13:16:24 +00009
Clement Escoffierce0e1e52008-03-28 15:33:36 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier0b93f382009-07-03 13:16:24 +000011
Clement Escoffierce0e1e52008-03-28 15:33:36 +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.
18-->
19<project>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000020 <modelVersion>4.0.0</modelVersion>
21 <packaging>bundle</packaging>
22 <name>iPOJO Composite Test Suite</name>
23 <artifactId>tests.composite</artifactId>
Clement Escoffier7d116ff2008-03-29 15:04:02 +000024 <groupId>ipojo.tests</groupId>
Clement Escoffier3b6ee432009-02-09 09:27:51 +000025 <version>1.3.0-SNAPSHOT</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000026 <dependencies>
27 <dependency>
28 <groupId>org.apache.felix</groupId>
29 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier0b93f382009-07-03 13:16:24 +000030 <version>${pom.version}</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000031 </dependency>
32 <dependency>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>org.apache.felix.ipojo.composite</artifactId>
Clement Escoffier0b93f382009-07-03 13:16:24 +000035 <version>${pom.version}</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000036 </dependency>
37 <dependency>
38 <groupId>org.apache.felix</groupId>
39 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier0b93f382009-07-03 13:16:24 +000040 <version>${pom.version}</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000041 </dependency>
42 <dependency>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>org.osgi.core</artifactId>
Clement Escoffier31f25df2008-11-20 15:51:56 +000045 <version>1.0.1</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000046 </dependency>
47 <dependency>
48 <groupId>junit</groupId>
49 <artifactId>junit</artifactId>
50 <version>3.8.1</version>
51 </dependency>
52 <dependency>
Clement Escoffier18bfd022008-12-01 19:42:13 +000053 <groupId>org.apache.felix</groupId>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000054 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000055 <version>1.1.0-SNAPSHOT</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000056 </dependency>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000057 </dependencies>
58 <build>
59 <plugins>
60 <plugin>
61 <groupId>org.apache.felix</groupId>
62 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000063 <version>1.4.3</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000064 <extensions>true</extensions>
65 <configuration>
66 <instructions>
67 <Export-Package>
Clement Escoffier77374832008-04-29 22:25:39 +000068 org.apache.felix.ipojo.test.composite.service, org.apache.felix.ipojo.test.composite.component, org.apache.felix.ipojo.test.composite.util
Clement Escoffierce0e1e52008-03-28 15:33:36 +000069 </Export-Package>
70 <Bundle-SymbolicName>
71 ${pom.artifactId}
72 </Bundle-SymbolicName>
73 <Private-Package>
74 org.apache.felix.ipojo.test.composite.*
75 </Private-Package>
76 <Test-Suite>
77 org.apache.felix.ipojo.test.composite.CompositeTestSuite
78 </Test-Suite>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000079 </instructions>
80 </configuration>
81 </plugin>
82 <plugin>
83 <groupId>org.apache.felix</groupId>
84 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier0b93f382009-07-03 13:16:24 +000085 <version>${pom.version}</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000086 <executions>
87 <execution>
88 <goals>
89 <goal>ipojo-bundle</goal>
90 </goals>
91 <configuration>
92 <ignoreAnnotations>true</ignoreAnnotations>
93 </configuration>
94 </execution>
95 </executions>
96 </plugin>
97 </plugins>
98 </build>
99</project>