blob: 17c7716795f418baa929c53b2c6dd0010439c579 [file] [log] [blame]
Clement Escoffiere50ede52008-03-28 15:33:36 +00001<!--
Clement Escoffier4cb4ff32009-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 Escoffiere50ede52008-03-28 15:33:36 +000018-->
19<project>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000020 <modelVersion>4.0.0</modelVersion>
21 <packaging>bundle</packaging><!-- Use the BND Maven plug-in -->
22 <groupId>ipojo.examples</groupId>
23 <artifactId>hello.client</artifactId>
24 <version>1.5.0-SNAPSHOT</version>
25 <name>Hello Service Client</name>
26 <dependencies>
27 <dependency>
28 <groupId>ipojo.examples</groupId>
29 <artifactId>hello.service</artifactId>
30 <version>1.5.0-SNAPSHOT</version>
31 </dependency>
32 </dependencies>
Clement Escoffiere50ede52008-03-28 15:33:36 +000033
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000034 <pluginRepositories>
35 <pluginRepository>
36 <id>apache.snapshots</id>
37 <name>snapshot plugins</name>
38 <url>
39 http://people.apache.org/repo/m2-snapshot-repository
40 </url>
41 <releases>
42 <enabled>false</enabled>
43 </releases>
44 <snapshots>
45 <enabled>true</enabled>
46 </snapshots>
47 </pluginRepository>
48 </pluginRepositories>
Clement Escoffiere50ede52008-03-28 15:33:36 +000049
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000050 <build>
51 <plugins>
52 <plugin>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>maven-bundle-plugin</artifactId>
55 <extensions>true</extensions>
56 <version>1.4.3</version>
57 <configuration>
58 <instructions>
59 <Bundle-SymbolicName>
Clement Escoffierfe606902010-05-01 10:46:02 +000060 ${project.artifactId}
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000061 </Bundle-SymbolicName>
62 <Private-Package>
63 ipojo.example.hello.client
64 </Private-Package>
65 </instructions>
66 </configuration>
67 </plugin>
68 <plugin>
69 <groupId>org.apache.felix</groupId>
70 <artifactId>maven-ipojo-plugin</artifactId>
71 <version>1.5.0-SNAPSHOT</version>
72 <executions>
73 <execution>
74 <goals>
75 <goal>ipojo-bundle</goal>
76 </goals>
77 </execution>
78 </executions>
79 </plugin>
80 </plugins>
81 </build>
Clement Escoffiere50ede52008-03-28 15:33:36 +000082</project>