iPOJOAdapter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>fr.velossity.osgi</groupId>
<artifactId>iPOJOAdapter</artifactId>
<version>1.0.14</version>
</dependency><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>fr.velossity.osgi</groupId>
<artifactId>patterns.parent</artifactId>
<version>1.0.14</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<artifactId>iPOJOAdapter</artifactId>
<packaging>bundle</packaging>
<name>[iPOJO] Adapter sample</name>
<description>Sample of adapter using iPOJO</description>
<dependencies>
<dependency>
<groupId>fr.velossity.osgi</groupId>
<artifactId>ServiceAPI</artifactId>
<version>1.0.14</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>fr.velossity.osgi</groupId>
<artifactId>iPOJOAdaptee</artifactId>
<version>1.0.14</version>
<scope>provided</scope>
</dependency>
<dependency>
<!-- Access to the iPOJO API to create dynamically instances -->
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.ipojo</artifactId>
<version>1.12.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>
!fr.velossity.sample.adapter.device.impl
</Export-Package>
<Private-Package>
fr.velossity.sample.adapter.device.impl
</Private-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-ipojo-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>