Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +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>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion>
|
| 21 | <packaging>bundle</packaging>
|
| 22 | <name>Apache Felix iPOJO Property Handler</name>
|
| 23 | <artifactId>
|
| 24 | org.apache.felix.ipojo.example.handler.property
|
| 25 | </artifactId>
|
Clement Escoffier | 7d116ff | 2008-03-29 15:04:02 +0000 | [diff] [blame] | 26 | <groupId>ipojo.examples</groupId>
|
Clement Escoffier | 218dbd1 | 2008-05-26 18:50:39 +0000 | [diff] [blame] | 27 | <version>0.9.0-SNAPSHOT</version>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 28 | <dependencies>
|
| 29 | <dependency>
|
| 30 | <groupId>org.apache.felix</groupId>
|
| 31 | <artifactId>org.apache.felix.ipojo</artifactId>
|
Clement Escoffier | 218dbd1 | 2008-05-26 18:50:39 +0000 | [diff] [blame] | 32 | <version>0.9.0-SNAPSHOT</version>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 33 | </dependency>
|
| 34 | <dependency>
|
| 35 | <groupId>org.apache.felix</groupId>
|
| 36 | <artifactId>org.apache.felix.ipojo.metadata</artifactId>
|
Clement Escoffier | 218dbd1 | 2008-05-26 18:50:39 +0000 | [diff] [blame] | 37 | <version>0.9.0-SNAPSHOT</version>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 38 | </dependency>
|
| 39 | </dependencies>
|
| 40 | <build>
|
| 41 | <plugins>
|
| 42 | <plugin>
|
| 43 | <groupId>org.apache.maven.plugins</groupId>
|
| 44 | <artifactId>maven-compiler-plugin</artifactId>
|
| 45 | <configuration>
|
| 46 | <source>1.5</source>
|
| 47 | <target>1.5</target>
|
| 48 | </configuration>
|
| 49 | </plugin>
|
| 50 | <plugin>
|
| 51 | <groupId>org.apache.felix</groupId>
|
| 52 | <artifactId>maven-bundle-plugin</artifactId>
|
Clement Escoffier | 9fc9a3c | 2008-08-11 09:55:34 +0000 | [diff] [blame^] | 53 | <version>1.4.2</version>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 54 | <extensions>true</extensions>
|
| 55 | <configuration>
|
| 56 | <instructions>
|
| 57 | <Private-Package>
|
| 58 | org.apache.felix.ipojo.handler.properties,
|
| 59 | example.handler.properties
|
| 60 | </Private-Package>
|
| 61 | </instructions>
|
| 62 | </configuration>
|
| 63 | </plugin>
|
| 64 | <plugin>
|
| 65 | <groupId>org.apache.felix</groupId>
|
| 66 | <artifactId>maven-ipojo-plugin</artifactId>
|
Clement Escoffier | 218dbd1 | 2008-05-26 18:50:39 +0000 | [diff] [blame] | 67 | <version>0.9.0-SNAPSHOT</version>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 68 | <executions>
|
| 69 | <execution>
|
| 70 | <goals>
|
| 71 | <goal>ipojo-bundle</goal>
|
| 72 | </goals>
|
| 73 | <configuration>
|
| 74 | <ignoreAnnotations>true</ignoreAnnotations>
|
| 75 | </configuration>
|
| 76 | </execution>
|
| 77 | </executions>
|
| 78 | </plugin>
|
| 79 | </plugins>
|
| 80 | </build>
|
| 81 | </project>
|