blob: 2775cc59d280bed18b909d66ada72a44d12c60ae [file] [log] [blame]
Clement Escoffiere50ede52008-03-28 15:33:36 +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 Escoffiere50ede52008-03-28 15:33:36 +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>
22 <groupId>ipojo.tests</groupId>
23 <artifactId>ipojo.tests</artifactId>
24 <version>1.5.0-SNAPSHOT</version>
25 </parent>
26
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000027 <modelVersion>4.0.0</modelVersion>
28 <packaging>bundle</packaging>
29 <name>iPOJO Composite Test Suite</name>
30 <artifactId>tests.composite</artifactId>
31 <groupId>ipojo.tests</groupId>
Clement Escoffier345e79a2011-02-23 10:36:42 +000032 <version>${ipojo.composite.snapshot}</version>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000033 <dependencies>
34 <dependency>
35 <groupId>org.apache.felix</groupId>
36 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000037 </dependency>
38 <dependency>
39 <groupId>org.apache.felix</groupId>
40 <artifactId>org.apache.felix.ipojo.composite</artifactId>
Clement Escoffier345e79a2011-02-23 10:36:42 +000041 <version>${ipojo.composite.snapshot}</version>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000042 </dependency>
43 <dependency>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000046 </dependency>
47 <dependency>
Clement Escoffierf4622e52010-05-01 10:21:51 +000048 <groupId>org.osgi</groupId>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000049 <artifactId>org.osgi.core</artifactId>
Clement Escoffierf4622e52010-05-01 10:21:51 +000050 </dependency>
51 <dependency>
52 <groupId>org.osgi</groupId>
53 <artifactId>org.osgi.compendium</artifactId>
54 <version>4.0.0</version>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000055 </dependency>
56 <dependency>
57 <groupId>junit</groupId>
58 <artifactId>junit</artifactId>
59 <version>3.8.1</version>
60 </dependency>
61 <dependency>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
64 <version>1.1.0-SNAPSHOT</version>
65 </dependency>
66 </dependencies>
67 <build>
68 <plugins>
69 <plugin>
70 <groupId>org.apache.felix</groupId>
71 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000072 <extensions>true</extensions>
73 <configuration>
74 <instructions>
75 <Export-Package>
76 org.apache.felix.ipojo.test.composite.service, org.apache.felix.ipojo.test.composite.component, org.apache.felix.ipojo.test.composite.util
77 </Export-Package>
78 <Bundle-SymbolicName>
Clement Escoffierfe606902010-05-01 10:46:02 +000079 ${project.artifactId}
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000080 </Bundle-SymbolicName>
81 <Private-Package>
82 org.apache.felix.ipojo.test.composite.*
83 </Private-Package>
84 <Test-Suite>
85 org.apache.felix.ipojo.test.composite.CompositeTestSuite
86 </Test-Suite>
87 </instructions>
88 </configuration>
89 </plugin>
90 <plugin>
91 <groupId>org.apache.felix</groupId>
92 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000093 <executions>
94 <execution>
95 <goals>
96 <goal>ipojo-bundle</goal>
97 </goals>
98 <configuration>
99 <ignoreAnnotations>true</ignoreAnnotations>
100 </configuration>
101 </execution>
102 </executions>
103 </plugin>
104 </plugins>
105 </build>
Clement Escoffiere50ede52008-03-28 15:33:36 +0000106</project>