Clement Escoffier | a7907c4 | 2008-05-19 01:16:16 +0000 | [diff] [blame] | 1 | <!--
|
| 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 Escoffier | 550b8f1 | 2008-05-19 01:20:44 +0000 | [diff] [blame] | 19 | <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 Escoffier | 45fc769 | 2008-05-19 01:18:49 +0000 | [diff] [blame] | 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>
|
Clement Escoffier | a7907c4 | 2008-05-19 01:16:16 +0000 | [diff] [blame] | 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>
|
Clement Escoffier | fb228c0 | 2008-05-19 01:20:53 +0000 | [diff] [blame^] | 30 | <version>0.9.0-SNAPSHOT</version>
|
Clement Escoffier | a7907c4 | 2008-05-19 01:16:16 +0000 | [diff] [blame] | 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>
|
Clement Escoffier | 550b8f1 | 2008-05-19 01:20:44 +0000 | [diff] [blame] | 47 | <version>0.8.0</version>
|
Clement Escoffier | a7907c4 | 2008-05-19 01:16:16 +0000 | [diff] [blame] | 48 | </dependency>
|
| 49 | <dependency>
|
| 50 | <groupId>org.apache.felix</groupId>
|
| 51 | <artifactId>org.apache.felix.ipojo</artifactId>
|
Clement Escoffier | 550b8f1 | 2008-05-19 01:20:44 +0000 | [diff] [blame] | 52 | <version>0.8.0</version>
|
Clement Escoffier | a7907c4 | 2008-05-19 01:16:16 +0000 | [diff] [blame] | 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.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>
|
| 75 | </instructions>
|
| 76 | </configuration>
|
| 77 | </plugin>
|
| 78 | <plugin>
|
| 79 | <groupId>org.apache.felix</groupId>
|
| 80 | <artifactId>maven-ipojo-plugin</artifactId>
|
Clement Escoffier | 550b8f1 | 2008-05-19 01:20:44 +0000 | [diff] [blame] | 81 | <version>0.8.0</version>
|
Clement Escoffier | a7907c4 | 2008-05-19 01:16:16 +0000 | [diff] [blame] | 82 | <executions>
|
| 83 | <execution>
|
| 84 | <goals>
|
| 85 | <goal>ipojo-bundle</goal>
|
| 86 | </goals>
|
| 87 | <configuration>
|
| 88 | <metadata>metadata.xml</metadata>
|
| 89 | </configuration>
|
| 90 | </execution>
|
| 91 | </executions>
|
| 92 | </plugin>
|
| 93 | </plugins>
|
| 94 | </build>
|
Clement Escoffier | a7907c4 | 2008-05-19 01:16:16 +0000 | [diff] [blame] | 95 | </project>
|