blob: 9bc5631576f335e3aa443ddc962f7da0408dfdcf [file] [log] [blame]
Clement Escoffierec73deb2008-10-14 11:53:43 +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 Escoffiercb5bca02008-10-14 11:52:24 +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">
20 <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>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <artifactId>org.apache.felix.ipojo.handler.temporal</artifactId>
29 <groupId>org.apache.felix</groupId>
30 <version>1.0.0</version>
31 <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>
47 <version>1.0.0</version>
48 </dependency>
49 <dependency>
50 <groupId>org.apache.felix</groupId>
51 <artifactId>org.apache.felix.ipojo</artifactId>
52 <version>1.0.0</version>
53 </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.2</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>
75 <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>
81 <Include-Resource>
82 META-INF/LICENCE=LICENSE,
83 META-INF/NOTICE=NOTICE
84 </Include-Resource>
85 </instructions>
86 </configuration>
87 </plugin>
88 <plugin>
89 <groupId>org.apache.felix</groupId>
90 <artifactId>maven-ipojo-plugin</artifactId>
91 <version>1.0.0</version>
92 <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>
105
106 <scm>
107 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.temporal-1.0.0</connection>
108 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.temporal-1.0.0</developerConnection>
109 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.temporal-1.0.0</url>
110 </scm>
111</project>