blob: bbe35d94f6fadee71c9c28fc6ba45eb703573141 [file] [log] [blame]
Clement Escoffierb7fd6702013-04-21 09:32:28 +00001<project>
2 <modelVersion>4.0.0</modelVersion>
3
4 <parent>
5 <groupId>org.apache.felix</groupId>
6 <artifactId>ipojo-handler-tutorial</artifactId>
Clement Escoffierbbfaf6a2014-01-16 09:45:00 +00007 <version>1.10.2-SNAPSHOT</version>
Clement Escoffierb7fd6702013-04-21 09:32:28 +00008 </parent>
9
10 <packaging>bundle</packaging>
11 <name>iPOJO Log Handler Consumer</name>
12 <artifactId>org.apache.felix.ipojo.log.consumer</artifactId>
13 <description>A bundle using the log handler</description>
14
15 <dependencies>
16 <dependency>
17 <groupId>${project.groupId}</groupId>
18 <artifactId>org.apache.felix.ipojo.log.foo</artifactId>
19 <version>${project.version}</version>
20 <scope>provided</scope>
21 </dependency>
22 <dependency>
23 <groupId>${project.groupId}</groupId>
24 <artifactId>org.apache.felix.ipojo.log.handler</artifactId>
25 <version>${project.version}</version>
26 <scope>provided</scope>
27 </dependency>
28 </dependencies>
29
30 <build>
31 <plugins>
32 <plugin>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>maven-bundle-plugin</artifactId>
35 <extensions>true</extensions>
36 <configuration>
37 <instructions>
38 <Private-Package>
39 org.apache.felix.ipojo.log.handler.example
40 </Private-Package>
41 </instructions>
42 </configuration>
43 </plugin>
44 <plugin>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>maven-ipojo-plugin</artifactId>
47 <executions>
48 <execution>
49 <goals>
50 <goal>ipojo-bundle</goal>
51 </goals>
52 </execution>
53 </executions>
54 </plugin>
55 </plugins>
56 </build>
57</project>