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>
|
| 26 | <version>1.9.0-SNAPSHOT</version>
|
| 27 | </parent>
|
| 28 |
|
| 29 | <packaging>bundle</packaging>
|
| 30 |
|
| 31 | <name>iPOJO Foo Service</name>
|
| 32 |
|
| 33 | <artifactId>org.apache.felix.ipojo.log.foo</artifactId>
|
| 34 |
|
| 35 | <build>
|
| 36 | <plugins>
|
| 37 | <plugin>
|
| 38 | <groupId>org.apache.felix</groupId>
|
| 39 | <artifactId>maven-bundle-plugin</artifactId>
|
| 40 | <extensions>true</extensions>
|
| 41 | <configuration>
|
| 42 | <instructions>
|
| 43 | <Export-Package>
|
| 44 | org.apache.felix.ipojo.foo
|
| 45 | </Export-Package>
|
| 46 | <Private-Package>
|
| 47 | org.apache.felix.ipojo.foo.impl
|
| 48 | </Private-Package>
|
| 49 | </instructions>
|
| 50 | </configuration>
|
| 51 | </plugin>
|
| 52 | <plugin>
|
| 53 | <groupId>org.apache.felix</groupId>
|
| 54 | <artifactId>maven-ipojo-plugin</artifactId>
|
| 55 | <executions>
|
| 56 | <execution>
|
| 57 | <goals>
|
| 58 | <goal>ipojo-bundle</goal>
|
| 59 | </goals>
|
| 60 | </execution>
|
| 61 | </executions>
|
| 62 | </plugin>
|
| 63 | </plugins>
|
| 64 | </build>
|
| 65 | </project>
|