blob: 4261fcbb86d67278a166d3eb9e568f207a3cecbe [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 Properties Handler</name>
31 <artifactId>org.apache.felix.ipojo.properties.handler</artifactId>
32 <description>A handler loading a property file</description>
33
34 <build>
35 <plugins>
36 <plugin>
37 <groupId>org.apache.felix</groupId>
38 <artifactId>maven-bundle-plugin</artifactId>
39 <extensions>true</extensions>
40 <configuration>
41 <instructions>
42 <Private-Package>
43 org.apache.felix.ipojo.handler.properties
44 </Private-Package>
45 </instructions>
46 </configuration>
47 </plugin>
48 <plugin>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>maven-ipojo-plugin</artifactId>
51 <executions>
52 <execution>
53 <goals>
54 <goal>ipojo-bundle</goal>
55 </goals>
56 </execution>
57 </executions>
58 </plugin>
59 </plugins>
60 </build>
61</project>