blob: fbf2e214f60c79d4733d1b3e04d67cf9c367eb15 [file] [log] [blame]
Clement Escoffierb7fd6702013-04-21 09:32:28 +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 -->
19
20<project>
21 <modelVersion>4.0.0</modelVersion>
22
23 <parent>
24 <groupId>org.apache.felix</groupId>
25 <artifactId>ipojo-handler-tutorial</artifactId>
Clement Escoffierbbfaf6a2014-01-16 09:45:00 +000026 <version>1.10.2-SNAPSHOT</version>
Clement Escoffierb7fd6702013-04-21 09:32:28 +000027 </parent>
28
29 <packaging>bundle</packaging>
30 <name>iPOJO Log Handler</name>
31 <artifactId>org.apache.felix.ipojo.log.handler</artifactId>
32 <description>A handler logging messages in an OSGi Log Service</description>
33
34 <dependencies>
35 <dependency>
36 <groupId>org.osgi</groupId>
37 <artifactId>org.osgi.core</artifactId>
38 <version>4.2.0</version>
39 <scope>provided</scope>
40 </dependency>
41 <dependency>
42 <groupId>org.osgi</groupId>
43 <artifactId>org.osgi.compendium</artifactId>
44 <version>4.2.0</version>
45 <scope>provided</scope>
46 </dependency>
47 </dependencies>
48
49 <build>
50 <plugins>
51 <plugin>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>maven-bundle-plugin</artifactId>
54 <extensions>true</extensions>
55 <configuration>
56 <instructions>
57 <Private-Package>
58 org.apache.felix.ipojo.log.handler
59 </Private-Package>
60 </instructions>
61 </configuration>
62 </plugin>
63 <plugin>
64 <groupId>org.apache.felix</groupId>
65 <artifactId>maven-ipojo-plugin</artifactId>
66 <executions>
67 <execution>
68 <goals>
69 <goal>ipojo-bundle</goal>
70 </goals>
71 </execution>
72 </executions>
73 </plugin>
74 </plugins>
75 </build>
76</project>