Clement Escoffier | b7fd670 | 2013-04-21 09:32:28 +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 | -->
|
| 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 Escoffier | bbfaf6a | 2014-01-16 09:45:00 +0000 | [diff] [blame] | 26 | <version>1.10.2-SNAPSHOT</version>
|
Clement Escoffier | b7fd670 | 2013-04-21 09:32:28 +0000 | [diff] [blame] | 27 | </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>
|