Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 1 | <!--
|
Clement Escoffier | 4cb4ff3 | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 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.
|
Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 18 | -->
|
| 19 | <project>
|
Clement Escoffier | 4cb4ff3 | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 20 | <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 Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 26 |
|
Clement Escoffier | 4cb4ff3 | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 27 | <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 Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 42 |
|
Clement Escoffier | 4cb4ff3 | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 43 | <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>
|
Clement Escoffier | fe60690 | 2010-05-01 10:46:02 +0000 | [diff] [blame^] | 53 | ${project.artifactId}
|
Clement Escoffier | 4cb4ff3 | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 54 | </Bundle-SymbolicName>
|
| 55 | <Export-Package>
|
| 56 | ipojo.example.hello
|
| 57 | </Export-Package>
|
| 58 | </instructions>
|
| 59 | </configuration>
|
| 60 | </plugin>
|
| 61 | </plugins>
|
| 62 | </build>
|
Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 63 | </project>
|