blob: 29e4e6da3ab1dbece216382f19a8890b1401feb6 [file] [log] [blame]
Clement Escoffierce0e1e52008-03-28 15:33:36 +00001<!--
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +00002 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.
Clement Escoffierce0e1e52008-03-28 15:33:36 +000018-->
19<project>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000020 <modelVersion>4.0.0</modelVersion>
21 <packaging>bundle</packaging>
22 <groupId>ipojo.examples</groupId>
23 <artifactId>hello.service</artifactId>
24 <version>1.5.0-SNAPSHOT</version>
25 <name>Hello Service</name>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000026
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000027 <pluginRepositories>
28 <pluginRepository>
29 <id>apache.snapshots</id>
30 <name>snapshot plugins</name>
31 <url>
32 http://people.apache.org/repo/m2-snapshot-repository
33 </url>
34 <releases>
35 <enabled>false</enabled>
36 </releases>
37 <snapshots>
38 <enabled>true</enabled>
39 </snapshots>
40 </pluginRepository>
41 </pluginRepositories>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000042
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000043 <build>
44 <plugins>
45 <plugin>
46 <groupId>org.apache.felix</groupId>
47 <artifactId>maven-bundle-plugin</artifactId>
48 <version>1.4.3</version>
49 <extensions>true</extensions>
50 <configuration>
51 <instructions>
52 <Bundle-SymbolicName>
53 ${pom.artifactId}
54 </Bundle-SymbolicName>
55 <Export-Package>
56 ipojo.example.hello
57 </Export-Package>
58 </instructions>
59 </configuration>
60 </plugin>
61 </plugins>
62 </build>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000063</project>