<project> | |
<modelVersion>4.0.0</modelVersion> | |
<parent> | |
<groupId>org.apache.felix</groupId> | |
<artifactId>ipojo-handler-tutorial</artifactId> | |
<version>1.10.2-SNAPSHOT</version> | |
</parent> | |
<packaging>bundle</packaging> | |
<name>iPOJO Log Handler Consumer</name> | |
<artifactId>org.apache.felix.ipojo.log.consumer</artifactId> | |
<description>A bundle using the log handler</description> | |
<dependencies> | |
<dependency> | |
<groupId>${project.groupId}</groupId> | |
<artifactId>org.apache.felix.ipojo.log.foo</artifactId> | |
<version>${project.version}</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>${project.groupId}</groupId> | |
<artifactId>org.apache.felix.ipojo.log.handler</artifactId> | |
<version>${project.version}</version> | |
<scope>provided</scope> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.felix</groupId> | |
<artifactId>maven-bundle-plugin</artifactId> | |
<extensions>true</extensions> | |
<configuration> | |
<instructions> | |
<Private-Package> | |
org.apache.felix.ipojo.log.handler.example | |
</Private-Package> | |
</instructions> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.felix</groupId> | |
<artifactId>maven-ipojo-plugin</artifactId> | |
<executions> | |
<execution> | |
<goals> | |
<goal>ipojo-bundle</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |