blob: 1e5ea298a2663aef3fcab128d6883506f644fcf1 [file] [log] [blame]
Clement Escoffiercdb4b172008-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 Service Dependency (Binding Policy) Test Suite</name>
23 <artifactId>tests.core.service.dependency.bindingpolicy</artifactId>
24 <groupId>ipojo.tests</groupId>
Clement Escoffier8036bab2008-05-26 18:50:39 +000025 <version>0.9.0-SNAPSHOT</version>
Clement Escoffiercdb4b172008-04-29 22:25:39 +000026 <dependencies>
27 <dependency>
28 <groupId>org.apache.felix</groupId>
29 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier8036bab2008-05-26 18:50:39 +000030 <version>0.9.0-SNAPSHOT</version>
Clement Escoffiercdb4b172008-04-29 22:25:39 +000031 </dependency>
32 <dependency>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier8036bab2008-05-26 18:50:39 +000035 <version>0.9.0-SNAPSHOT</version>
Clement Escoffiercdb4b172008-04-29 22:25:39 +000036 </dependency>
37 <dependency>
38 <groupId>org.apache.felix</groupId>
39 <artifactId>org.osgi.core</artifactId>
40 <version>1.0.0</version>
41 </dependency>
42 <dependency>
43 <groupId>junit</groupId>
44 <artifactId>junit</artifactId>
45 <version>3.8.1</version>
46 </dependency>
47 <dependency>
48 <groupId>ipojo.examples</groupId>
49 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
Clement Escoffier8036bab2008-05-26 18:50:39 +000050 <version>0.9.0-SNAPSHOT</version>
Clement Escoffiercdb4b172008-04-29 22:25:39 +000051 </dependency>
52 <dependency>
53 <groupId>ipojo.tests</groupId>
54 <artifactId>tests.core.service.dependency</artifactId>
Clement Escoffier8036bab2008-05-26 18:50:39 +000055 <version>0.9.0-SNAPSHOT</version>
Clement Escoffiercdb4b172008-04-29 22:25:39 +000056 </dependency>
57 </dependencies>
58 <build>
59 <plugins>
60 <plugin>
61 <groupId>org.apache.felix</groupId>
62 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier6ed6c4e2008-08-11 09:55:34 +000063 <version>1.4.2</version>
Clement Escoffiercdb4b172008-04-29 22:25:39 +000064 <extensions>true</extensions>
65 <configuration>
66 <instructions>
67 <Bundle-SymbolicName>
68 ${pom.artifactId}
69 </Bundle-SymbolicName>
70 <Private-Package>
71 org.apache.felix.ipojo.test.scenarios.service.dependency.dynamic.priority, org.apache.felix.ipojo.test.scenarios.service.dependency.policies, org.apache.felix.ipojo.test.scenarios.service.dependency.statics, org.apache.felix.ipojo.test.scenarios.util
72 </Private-Package>
73 <Test-Suite>
74 org.apache.felix.ipojo.test.scenarios.service.dependency.policies.DependencyTestSuite
75 </Test-Suite>
76 </instructions>
77 </configuration>
78 </plugin>
79 <plugin>
80 <groupId>org.apache.felix</groupId>
81 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier8036bab2008-05-26 18:50:39 +000082 <version>0.9.0-SNAPSHOT</version>
Clement Escoffiercdb4b172008-04-29 22:25:39 +000083 <executions>
84 <execution>
85 <goals>
86 <goal>ipojo-bundle</goal>
87 </goals>
88 <configuration>
89 <ignoreAnnotations>true</ignoreAnnotations>
90 </configuration>
91 </execution>
92 </executions>
93 </plugin>
94 <plugin>
95 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-compiler-plugin</artifactId>
97 <configuration>
98 <source>1.4</source>
99 <target>1.4</target>
100 </configuration>
101 </plugin>
102 </plugins>
103 </build>
104</project>