blob: 44065c992ee3c2e207cbba5f69c33079fb9d588f [file] [log] [blame]
Clement Escoffiera7907c42008-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 Escoffier550b8f12008-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 Escoffier45fc7692008-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 Escoffiera7907c42008-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 Escoffier4b2b8172008-06-06 14:33:54 +000030 <version>0.9.0-SNAPSHOT</version>
Clement Escoffiera7907c42008-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 Escoffier9c1c87f2008-07-03 15:24:29 +000047 <version>0.9.0-SNAPSHOT</version>
Clement Escoffiera7907c42008-05-19 01:16:16 +000048 </dependency>
49 <dependency>
50 <groupId>org.apache.felix</groupId>
51 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier9c1c87f2008-07-03 15:24:29 +000052 <version>0.9.0-SNAPSHOT</version>
Clement Escoffiera7907c42008-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>
61 <version>1.4.0</version>
62 <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 Escoffier3575f072008-06-06 12:12:01 +000075 <Include-Resource>
76 META-INF/LICENCE=LICENSE,
77 META-INF/NOTICE=NOTICE
78 </Include-Resource>
Clement Escoffiera7907c42008-05-19 01:16:16 +000079 </instructions>
80 </configuration>
81 </plugin>
82 <plugin>
83 <groupId>org.apache.felix</groupId>
84 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier9c1c87f2008-07-03 15:24:29 +000085 <version>0.9.0-SNAPSHOT</version>
Clement Escoffiera7907c42008-05-19 01:16:16 +000086 <executions>
87 <execution>
88 <goals>
89 <goal>ipojo-bundle</goal>
90 </goals>
91 <configuration>
92 <metadata>metadata.xml</metadata>
93 </configuration>
94 </execution>
95 </executions>
96 </plugin>
97 </plugins>
98 </build>
Clement Escoffiera7907c42008-05-19 01:16:16 +000099</project>