Clement Escoffier | a7b8f7d | 2013-02-28 10:27:21 +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 | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 21 | <parent> |
| 22 | <groupId>org.apache.felix</groupId> |
| 23 | <artifactId>felix-parent</artifactId> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 24 | <version>2.1</version> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 25 | <relativePath>../../../../pom/pom.xml</relativePath> |
| 26 | </parent> |
| 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <packaging>bundle</packaging> |
| 29 | <artifactId>org.apache.felix.ipojo.handler.temporal</artifactId> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 30 | <version>1.7.0-SNAPSHOT</version> |
| 31 | <name>Apache Felix iPOJO Temporal Service Dependency Handler</name> |
Clement Escoffier | a7b8f7d | 2013-02-28 10:27:21 +0000 | [diff] [blame] | 32 | |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 33 | <description> |
| 34 | iPOJO extension to inject temporal service dependencies. |
| 35 | </description> |
Clement Escoffier | b76fae7 | 2013-05-28 04:37:54 +0000 | [diff] [blame] | 36 | <url> |
| 37 | http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/describing-components/temporal-service-dependency.html |
| 38 | </url> |
Clement Escoffier | a7b8f7d | 2013-02-28 10:27:21 +0000 | [diff] [blame] | 39 | |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 40 | <dependencies> |
| 41 | <dependency> |
| 42 | <groupId>org.osgi</groupId> |
| 43 | <artifactId>org.osgi.core</artifactId> |
| 44 | <version>4.0.0</version> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.apache.felix</groupId> |
| 48 | <artifactId>org.apache.felix.ipojo</artifactId> |
| 49 | <version>1.9.0-SNAPSHOT</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>asm</groupId> |
| 53 | <artifactId>asm-all</artifactId> |
| 54 | <version>3.3.1</version> |
| 55 | <exclusions> |
| 56 | <exclusion> |
| 57 | <groupId>asm</groupId> |
| 58 | <artifactId>asm-tree</artifactId> |
| 59 | </exclusion> |
| 60 | </exclusions> |
| 61 | </dependency> |
| 62 | </dependencies> |
| 63 | <build> |
| 64 | <plugins> |
| 65 | <plugin> |
| 66 | <groupId>org.apache.felix</groupId> |
| 67 | <artifactId>maven-bundle-plugin</artifactId> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 68 | <version>2.3.7</version> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 69 | <extensions>true</extensions> |
| 70 | <configuration> |
| 71 | <instructions> |
| 72 | <Private-Package> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 73 | org.apache.felix.ipojo.handler.temporal;-split-package:=merge-first, |
| 74 | org.objectweb.asm;-split-package:=merge-last |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 75 | </Private-Package> |
| 76 | <Bundle-Name>${project.name}</Bundle-Name> |
| 77 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 78 | <Import-Package> |
| 79 | org.apache.felix.ipojo;version=1.8.1, |
| 80 | !org.objectweb.asm.tree, * |
| 81 | </Import-Package> |
| 82 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
| 83 | <Bundle-Description>iPOJO Temporal Dependency Handler |
| 84 | </Bundle-Description> |
| 85 | <Bundle-DocURL> |
Clement Escoffier | b76fae7 | 2013-05-28 04:37:54 +0000 | [diff] [blame] | 86 | http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/describing-components/temporal-service-dependency.html |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 87 | </Bundle-DocURL> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 88 | </instructions> |
| 89 | </configuration> |
| 90 | </plugin> |
| 91 | <plugin> |
| 92 | <groupId>org.apache.felix</groupId> |
| 93 | <artifactId>maven-ipojo-plugin</artifactId> |
| 94 | <version>1.6.0</version> |
| 95 | <executions> |
| 96 | <execution> |
| 97 | <goals> |
| 98 | <goal>ipojo-bundle</goal> |
| 99 | </goals> |
| 100 | <configuration> |
| 101 | <metadata>metadata.xml</metadata> |
| 102 | </configuration> |
| 103 | </execution> |
| 104 | </executions> |
| 105 | </plugin> |
| 106 | <plugin> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 107 | <groupId>org.apache.maven.plugins</groupId> |
| 108 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 109 | <configuration> |
| 110 | <enableRulesSummary>false</enableRulesSummary> |
| 111 | <violationSeverity>warning</violationSeverity> |
| 112 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 113 | </configuration> |
| 114 | </plugin> |
| 115 | <plugin> |
| 116 | <groupId>org.apache.maven.plugins</groupId> |
| 117 | <artifactId>maven-compiler-plugin</artifactId> |
| 118 | <configuration> |
| 119 | <target>1.5</target> |
| 120 | <source>1.5</source> |
| 121 | </configuration> |
| 122 | </plugin> |
| 123 | </plugins> |
| 124 | </build> |
Clement Escoffier | a7b8f7d | 2013-02-28 10:27:21 +0000 | [diff] [blame] | 125 | </project> |