blob: 6e84e87a0c2a5e80a8db908b3b377b4e28901578 [file] [log] [blame]
Clement Escoffier04a11662013-07-21 17:24:32 +00001<!--
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 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>ipojo-maven-tutorial</artifactId>
24 <version>@project.version@</version>
25 </parent>
26
27 <packaging>bundle</packaging>
28
29 <artifactId>hello.service</artifactId>
30 <name>Hello Service</name>
31
32 <build>
33 <plugins>
34 <plugin>
35 <groupId>org.apache.felix</groupId>
36 <artifactId>maven-bundle-plugin</artifactId>
37 <extensions>true</extensions>
38 <configuration>
39 <instructions>
40 <Export-Package>
41 ipojo.example.hello
42 </Export-Package>
43 </instructions>
44 </configuration>
45 </plugin>
46 </plugins>
47 </build>
48</project>