blob: a90d829c24b7ded2abe7573df682a19bceefd620 [file] [log] [blame]
Clement Escoffierb6146e92008-05-19 01:16:16 +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-->
Clement Escoffier5f0f9312008-05-19 01:20:44 +000019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Clement Escoffier9eff93b2008-05-19 01:18:49 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
23 <version>1.0.2</version>
24 <relativePath>../../pom/pom.xml</relativePath>
25 </parent>
Clement Escoffierb6146e92008-05-19 01:16:16 +000026 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <artifactId>org.apache.felix.ipojo.handler.temporal</artifactId>
29 <groupId>org.apache.felix</groupId>
Clement Escoffier1edbfc42008-06-06 14:33:54 +000030 <version>0.9.0-SNAPSHOT</version>
Clement Escoffierb6146e92008-05-19 01:16:16 +000031 <name>Apache Felix iPOJO Temporal Service Dependency Handler</name>
32
33 <dependencies>
34 <dependency>
35 <groupId>org.apache.felix</groupId>
36 <artifactId>org.osgi.core</artifactId>
37 <version>1.0.0</version>
38 </dependency>
39 <dependency>
40 <groupId>org.apache.felix</groupId>
41 <artifactId>org.osgi.compendium</artifactId>
42 <version>1.0.0</version>
43 </dependency>
44 <dependency>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier83cc7ed2008-07-03 15:24:29 +000047 <version>0.9.0-SNAPSHOT</version>
Clement Escoffierb6146e92008-05-19 01:16:16 +000048 </dependency>
49 <dependency>
50 <groupId>org.apache.felix</groupId>
51 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier83cc7ed2008-07-03 15:24:29 +000052 <version>0.9.0-SNAPSHOT</version>
Clement Escoffierb6146e92008-05-19 01:16:16 +000053 </dependency>
54 </dependencies>
55
56 <build>
57 <plugins>
58 <plugin>
59 <groupId>org.apache.felix</groupId>
60 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier6ed6c4e2008-08-11 09:55:34 +000061 <version>1.4.2</version>
Clement Escoffierb6146e92008-05-19 01:16:16 +000062 <extensions>true</extensions>
63 <configuration>
64 <instructions>
65 <Private-Package>
66 org.apache.felix.ipojo.handler.temporal
67 </Private-Package>
68 <Bundle-Name>${pom.name}</Bundle-Name>
69 <Bundle-SymbolicName>
70 org.apache.felix.ipojo.handler.temporal
71 </Bundle-SymbolicName>
72 <Bundle-Vendor>
73 The Apache Software Foundation
74 </Bundle-Vendor>
Clement Escoffier06c1d312008-08-13 14:14:55 +000075 <Bundle-Description>
76 iPOJO Temporal Dependency Handler
77 </Bundle-Description>
78 <Bundle-DocURL>
79 http://felix.apache.org/site/temporal-service-dependency.html
80 </Bundle-DocURL>
Clement Escoffierbd7ff502008-06-06 12:12:01 +000081 <Include-Resource>
82 META-INF/LICENCE=LICENSE,
83 META-INF/NOTICE=NOTICE
84 </Include-Resource>
Clement Escoffierb6146e92008-05-19 01:16:16 +000085 </instructions>
86 </configuration>
87 </plugin>
88 <plugin>
89 <groupId>org.apache.felix</groupId>
90 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier83cc7ed2008-07-03 15:24:29 +000091 <version>0.9.0-SNAPSHOT</version>
Clement Escoffierb6146e92008-05-19 01:16:16 +000092 <executions>
93 <execution>
94 <goals>
95 <goal>ipojo-bundle</goal>
96 </goals>
97 <configuration>
98 <metadata>metadata.xml</metadata>
99 </configuration>
100 </execution>
101 </executions>
102 </plugin>
103 </plugins>
104 </build>
Clement Escoffierb6146e92008-05-19 01:16:16 +0000105</project>