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 | <project>
|
| 20 | <modelVersion>4.0.0</modelVersion>
|
| 21 |
|
| 22 | <parent>
|
| 23 | <groupId>org.apache.felix</groupId>
|
| 24 | <artifactId>ipojo-handler-tutorial</artifactId>
|
Clement Escoffier | bbfaf6a | 2014-01-16 09:45:00 +0000 | [diff] [blame] | 25 | <version>1.10.2-SNAPSHOT</version>
|
Clement Escoffier | b7fd670 | 2013-04-21 09:32:28 +0000 | [diff] [blame] | 26 | </parent>
|
| 27 |
|
| 28 | <packaging>bundle</packaging>
|
| 29 | <name>iPOJO Property Handler Consumer</name>
|
| 30 | <artifactId>org.apache.felix.ipojo.properties.consumer</artifactId>
|
| 31 | <description>A bundle using the properties handler</description>
|
| 32 |
|
| 33 | <dependencies>
|
| 34 | <dependency>
|
| 35 | <groupId>${project.groupId}</groupId>
|
| 36 | <artifactId>org.apache.felix.ipojo.properties.handler</artifactId>
|
| 37 | <version>${project.version}</version>
|
| 38 | </dependency>
|
| 39 | </dependencies>
|
| 40 |
|
| 41 | <build>
|
| 42 | <plugins>
|
| 43 | <plugin>
|
| 44 | <groupId>org.apache.felix</groupId>
|
| 45 | <artifactId>maven-bundle-plugin</artifactId>
|
| 46 | <extensions>true</extensions>
|
| 47 | <configuration>
|
| 48 | <instructions>
|
| 49 | <Private-Package>
|
| 50 | org.apache.felix.ipojo.handler.props.example
|
| 51 | </Private-Package>
|
| 52 | </instructions>
|
| 53 | </configuration>
|
| 54 | </plugin>
|
| 55 | <plugin>
|
| 56 | <groupId>org.apache.felix</groupId>
|
| 57 | <artifactId>maven-ipojo-plugin</artifactId>
|
| 58 | <executions>
|
| 59 | <execution>
|
| 60 | <goals>
|
| 61 | <goal>ipojo-bundle</goal>
|
| 62 | </goals>
|
| 63 | </execution>
|
| 64 | </executions>
|
| 65 | </plugin>
|
| 66 | </plugins>
|
| 67 | </build>
|
| 68 | </project>
|