blob: 6456700d68529926789d0174d64e85896757c9c3 [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 Escoffier4cb4ff32009-08-14 12:11:19 +000031 <version>1.5.0-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 Escoffier86ea4652010-04-29 15:53:58 +000036 <version>1.7.0-SNAPSHOT</version>
Clement Escoffier354be552008-12-19 16:04:04 +000037 </dependency>
38 <dependency>
39 <groupId>org.apache.felix</groupId>
40 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier354be552008-12-19 16:04:04 +000041 </dependency>
42 <dependency>
Clement Escoffierf4622e52010-05-01 10:21:51 +000043 <groupId>org.osgi</groupId>
Clement Escoffier354be552008-12-19 16:04:04 +000044 <artifactId>org.osgi.core</artifactId>
Clement Escoffier354be552008-12-19 16:04:04 +000045 </dependency>
46 <dependency>
47 <groupId>junit</groupId>
48 <artifactId>junit</artifactId>
49 <version>3.8.1</version>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
54 <version>1.1.0-SNAPSHOT</version>
55 </dependency>
56 <dependency>
Clement Escoffierf4622e52010-05-01 10:21:51 +000057 <groupId>org.osgi</groupId>
58 <artifactId>org.osgi.compendium</artifactId>
59 <version>4.0.0</version>
60 </dependency>
61 <dependency>
Clement Escoffier354be552008-12-19 16:04:04 +000062 <artifactId>tests.core.ps</artifactId>
63 <groupId>ipojo.tests</groupId>
Clement Escoffierc80b73d2009-07-03 13:16:24 +000064 <version>${pom.version}</version>
Clement Escoffier354be552008-12-19 16:04:04 +000065 </dependency>
66 </dependencies>
67 <build>
68 <plugins>
69 <plugin>
70 <groupId>org.apache.felix</groupId>
71 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier354be552008-12-19 16:04:04 +000072 <extensions>true</extensions>
73 <configuration>
74 <instructions>
75 <Bundle-SymbolicName>
76 ${pom.artifactId}
77 </Bundle-SymbolicName>
78 <Private-Package>
79 org.apache.felix.ipojo.test.scenarios.component.strategies, org.apache.felix.ipojo.test.scenarios.ps.strategies
80 </Private-Package>
81 <Test-Suite>
82 org.apache.felix.ipojo.test.scenarios.ps.strategies.ProvidedServiceStrategyTestSuite
83 </Test-Suite>
84 </instructions>
85 </configuration>
86 </plugin>
87 <plugin>
88 <groupId>org.apache.felix</groupId>
89 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier354be552008-12-19 16:04:04 +000090 <executions>
91 <execution>
92 <goals>
93 <goal>ipojo-bundle</goal>
94 </goals>
95 <configuration>
96 <ignoreAnnotations>true</ignoreAnnotations>
97 </configuration>
98 </execution>
99 </executions>
100 </plugin>
101 <plugin>
102 <groupId>org.apache.maven.plugins</groupId>
103 <artifactId>maven-compiler-plugin</artifactId>
104 <configuration>
105 <source>1.4</source>
106 <target>1.4</target>
107 </configuration>
108 </plugin>
109 </plugins>
110 </build>
111</project>