Clement Escoffier | e50ede5 | 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>
|
| 20 | <parent>
|
| 21 | <groupId>ipojo.examples</groupId>
|
| 22 | <artifactId>ipojo.examples.property.handler</artifactId>
|
| 23 | <version>0.7.6-SNAPSHOT</version>
|
| 24 | <relativePath>../pom.xml</relativePath>
|
| 25 | </parent>
|
| 26 | <modelVersion>4.0.0</modelVersion>
|
| 27 | <packaging>bundle</packaging>
|
| 28 | <name>Apache Felix iPOJO Property Handler Test</name>
|
| 29 | <artifactId>
|
| 30 | org.apache.felix.ipojo.example.handler.property.test
|
| 31 | </artifactId>
|
| 32 | <dependencies>
|
| 33 | <dependency>
|
| 34 | <groupId>org.apache.felix</groupId>
|
| 35 | <artifactId>org.apache.felix.ipojo.annotations</artifactId>
|
| 36 | <version>${pom.version}</version>
|
| 37 | </dependency>
|
| 38 | <dependency>
|
| 39 | <groupId>ipojo.examples</groupId>
|
| 40 | <artifactId>
|
| 41 | org.apache.felix.ipojo.example.handler.property
|
| 42 | </artifactId>
|
| 43 | <version>${pom.version}</version>
|
| 44 | </dependency>
|
| 45 | </dependencies>
|
| 46 | <build>
|
| 47 | <plugins>
|
| 48 | <plugin>
|
| 49 | <groupId>org.apache.maven.plugins</groupId>
|
| 50 | <artifactId>maven-compiler-plugin</artifactId>
|
| 51 | <configuration>
|
| 52 | <source>1.5</source>
|
| 53 | <target>1.5</target>
|
| 54 | </configuration>
|
| 55 | </plugin>
|
| 56 | <plugin>
|
| 57 | <groupId>org.apache.felix</groupId>
|
| 58 | <artifactId>maven-bundle-plugin</artifactId>
|
| 59 | <version>1.4.0</version>
|
| 60 | <extensions>true</extensions>
|
| 61 | <configuration>
|
| 62 | <instructions>
|
| 63 | <Private-Package>
|
| 64 | org.apache.felix.ipojo.handler.properties.example
|
| 65 | </Private-Package>
|
| 66 | </instructions>
|
| 67 | </configuration>
|
| 68 | </plugin>
|
| 69 | <plugin>
|
| 70 | <groupId>org.apache.felix</groupId>
|
| 71 | <artifactId>maven-ipojo-plugin</artifactId>
|
| 72 | <version>${pom.version}</version>
|
| 73 | <executions>
|
| 74 | <execution>
|
| 75 | <goals>
|
| 76 | <goal>ipojo-bundle</goal>
|
| 77 | </goals>
|
| 78 | </execution>
|
| 79 | </executions>
|
| 80 | </plugin>
|
| 81 | </plugins>
|
| 82 | </build>
|
| 83 | </project>
|