blob: 21dee30ef81813f1d64bb98b8ea828f88a74a65c [file] [log] [blame]
Clement Escoffiera7b8f7d2013-02-28 10:27:21 +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 Escoffierc5b8d122013-03-04 09:01:52 +000019<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 Escoffiered4ca022013-03-13 15:27:20 +000024 <version>2.1</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000025 <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 Escoffierc5b8d122013-03-04 09:01:52 +000030 <version>1.7.0-SNAPSHOT</version>
31 <name>Apache Felix iPOJO Temporal Service Dependency Handler</name>
Clement Escoffiera7b8f7d2013-02-28 10:27:21 +000032
Clement Escoffierc5b8d122013-03-04 09:01:52 +000033 <description>
34 iPOJO extension to inject temporal service dependencies.
35 </description>
36 <url>http://felix.apache.org/site/temporal-service-dependency.html</url>
Clement Escoffiera7b8f7d2013-02-28 10:27:21 +000037
Clement Escoffierc5b8d122013-03-04 09:01:52 +000038 <dependencies>
39 <dependency>
40 <groupId>org.osgi</groupId>
41 <artifactId>org.osgi.core</artifactId>
42 <version>4.0.0</version>
43 </dependency>
44 <dependency>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>org.apache.felix.ipojo</artifactId>
47 <version>1.9.0-SNAPSHOT</version>
48 </dependency>
49 <dependency>
50 <groupId>asm</groupId>
51 <artifactId>asm-all</artifactId>
52 <version>3.3.1</version>
53 <exclusions>
54 <exclusion>
55 <groupId>asm</groupId>
56 <artifactId>asm-tree</artifactId>
57 </exclusion>
58 </exclusions>
59 </dependency>
60 </dependencies>
61 <build>
62 <plugins>
63 <plugin>
64 <groupId>org.apache.felix</groupId>
65 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000066 <version>2.3.7</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000067 <extensions>true</extensions>
68 <configuration>
69 <instructions>
70 <Private-Package>
Clement Escoffiered4ca022013-03-13 15:27:20 +000071 org.apache.felix.ipojo.handler.temporal;-split-package:=merge-first,
72 org.objectweb.asm;-split-package:=merge-last
Clement Escoffierc5b8d122013-03-04 09:01:52 +000073 </Private-Package>
74 <Bundle-Name>${project.name}</Bundle-Name>
75 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
76 <Import-Package>
77 org.apache.felix.ipojo;version=1.8.1,
78 !org.objectweb.asm.tree, *
79 </Import-Package>
80 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
81 <Bundle-Description>iPOJO Temporal Dependency Handler
82 </Bundle-Description>
83 <Bundle-DocURL>
84 http://felix.apache.org/site/temporal-service-dependency.html
85 </Bundle-DocURL>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000086 </instructions>
87 </configuration>
88 </plugin>
89 <plugin>
90 <groupId>org.apache.felix</groupId>
91 <artifactId>maven-ipojo-plugin</artifactId>
92 <version>1.6.0</version>
93 <executions>
94 <execution>
95 <goals>
96 <goal>ipojo-bundle</goal>
97 </goals>
98 <configuration>
99 <metadata>metadata.xml</metadata>
100 </configuration>
101 </execution>
102 </executions>
103 </plugin>
104 <plugin>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-checkstyle-plugin</artifactId>
107 <configuration>
108 <enableRulesSummary>false</enableRulesSummary>
109 <violationSeverity>warning</violationSeverity>
110 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
111 </configuration>
112 </plugin>
113 <plugin>
114 <groupId>org.apache.maven.plugins</groupId>
115 <artifactId>maven-compiler-plugin</artifactId>
116 <configuration>
117 <target>1.5</target>
118 <source>1.5</source>
119 </configuration>
120 </plugin>
121 </plugins>
122 </build>
Clement Escoffiera7b8f7d2013-02-28 10:27:21 +0000123</project>