blob: e7124d93d68b2d92bd0774c399926759b030377a [file] [log] [blame]
Clement Escoffier354be552008-12-19 16:04:04 +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 Escoffierc80b73d2009-07-03 13:16:24 +00009
Clement Escoffier354be552008-12-19 16:04:04 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffierc80b73d2009-07-03 13:16:24 +000011
Clement Escoffier354be552008-12-19 16:04:04 +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-->
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>
Clement Escoffier354be552008-12-19 16:04:04 +000026 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>iPOJO Service Providing Strategy Test Suite</name>
29 <artifactId>tests.core.ps.strategy</artifactId>
30 <groupId>ipojo.tests</groupId>
Clement Escoffier345e79a2011-02-23 10:36:42 +000031 <version>${ipojo.core.snapshot}</version>
Clement Escoffier354be552008-12-19 16:04:04 +000032 <dependencies>
33 <dependency>
34 <groupId>org.apache.felix</groupId>
35 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier354be552008-12-19 16:04:04 +000036 </dependency>
37 <dependency>
38 <groupId>org.apache.felix</groupId>
39 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier354be552008-12-19 16:04:04 +000040 </dependency>
41 <dependency>
Clement Escoffierf4622e52010-05-01 10:21:51 +000042 <groupId>org.osgi</groupId>
Clement Escoffier354be552008-12-19 16:04:04 +000043 <artifactId>org.osgi.core</artifactId>
Clement Escoffier354be552008-12-19 16:04:04 +000044 </dependency>
45 <dependency>
46 <groupId>junit</groupId>
47 <artifactId>junit</artifactId>
48 <version>3.8.1</version>
49 </dependency>
50 <dependency>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
53 <version>1.1.0-SNAPSHOT</version>
54 </dependency>
55 <dependency>
Clement Escoffierf4622e52010-05-01 10:21:51 +000056 <groupId>org.osgi</groupId>
57 <artifactId>org.osgi.compendium</artifactId>
58 <version>4.0.0</version>
59 </dependency>
60 <dependency>
Clement Escoffier354be552008-12-19 16:04:04 +000061 <artifactId>tests.core.ps</artifactId>
62 <groupId>ipojo.tests</groupId>
Clement Escoffierfe606902010-05-01 10:46:02 +000063 <version>${project.version}</version>
Clement Escoffier354be552008-12-19 16:04:04 +000064 </dependency>
65 </dependencies>
66 <build>
67 <plugins>
68 <plugin>
69 <groupId>org.apache.felix</groupId>
70 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier354be552008-12-19 16:04:04 +000071 <extensions>true</extensions>
72 <configuration>
73 <instructions>
74 <Bundle-SymbolicName>
Clement Escoffierfe606902010-05-01 10:46:02 +000075 ${project.artifactId}
Clement Escoffier354be552008-12-19 16:04:04 +000076 </Bundle-SymbolicName>
77 <Private-Package>
78 org.apache.felix.ipojo.test.scenarios.component.strategies, org.apache.felix.ipojo.test.scenarios.ps.strategies
79 </Private-Package>
80 <Test-Suite>
81 org.apache.felix.ipojo.test.scenarios.ps.strategies.ProvidedServiceStrategyTestSuite
82 </Test-Suite>
83 </instructions>
84 </configuration>
85 </plugin>
86 <plugin>
87 <groupId>org.apache.felix</groupId>
88 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier354be552008-12-19 16:04:04 +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 <plugin>
101 <groupId>org.apache.maven.plugins</groupId>
102 <artifactId>maven-compiler-plugin</artifactId>
103 <configuration>
104 <source>1.4</source>
105 <target>1.4</target>
106 </configuration>
107 </plugin>
108 </plugins>
109 </build>
110</project>