blob: 57e69bedc64cd522ac72500687fdf3231aa32ae2 [file] [log] [blame]
Clement Escoffierce0e1e52008-03-28 15:33:36 +00001<project>
2 <modelVersion>4.0.0</modelVersion>
3 <packaging>bundle</packaging>
4 <groupId>ipojo.examples</groupId>
5 <artifactId>hello.client.annotation</artifactId>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +00006 <version>1.5.0-SNAPSHOT</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +00007 <name>Hello Service Client using Annotations</name>
8
9 <dependencies>
10 <dependency>
11 <groupId>ipojo.examples</groupId>
12 <artifactId>hello.service</artifactId>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000013 <version>1.5.0-SNAPSHOT</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000014 </dependency>
15 <dependency>
16 <groupId>org.apache.felix</groupId>
17 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000018 <version>1.5.0-SNAPSHOT</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000019 </dependency>
20 </dependencies>
21
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000022 <pluginRepositories>
23 <pluginRepository>
24 <id>apache.snapshots</id>
25 <name>snapshot plugins</name>
26 <url>
27 http://people.apache.org/repo/m2-snapshot-repository
28 </url>
29 <releases>
30 <enabled>false</enabled>
31 </releases>
32 <snapshots>
33 <enabled>true</enabled>
34 </snapshots>
35 </pluginRepository>
36 </pluginRepositories>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000037
38 <build>
39 <plugins>
40 <plugin>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000041 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-compiler-plugin</artifactId>
43 <configuration>
44 <source>1.5</source>
45 <target>1.5</target>
46 </configuration>
47 </plugin>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000048 <plugin>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>maven-bundle-plugin</artifactId>
51 <extensions>true</extensions>
52 <configuration>
53 <instructions>
Clement Escoffier134b0062010-05-01 10:46:02 +000054 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000055 <Private-Package>ipojo.example.hello.client</Private-Package>
56 </instructions>
57 </configuration>
58 </plugin>
59 <plugin>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000060 <groupId>org.apache.felix</groupId>
61 <artifactId>maven-ipojo-plugin</artifactId>
62 <version>1.5.0-SNAPSHOT</version>
63 <executions>
64 <execution>
65 <goals>
66 <goal>ipojo-bundle</goal>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000067 </goals>
68 </execution>
69 </executions>
70 </plugin>
71 </plugins>
72 </build>
73</project>