| <project> |
| <parent> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>felix</artifactId> |
| <version>1.1.0-SNAPSHOT</version> |
| <relativePath>../../pom/pom.xml</relativePath> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <packaging>bundle</packaging> |
| <name>Apache Felix Examples: Dictionary Service Integration Test</name> |
| <artifactId>org.apache.felix.examples.dictionaryservice.itest</artifactId> |
| <version>0.9.0-SNAPSHOT</version> |
| <dependencies> |
| <dependency> |
| <groupId>${pom.groupId}</groupId> |
| <artifactId>org.osgi.core</artifactId> |
| <version>1.1.0-SNAPSHOT</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>${pom.groupId}</groupId> |
| <artifactId>org.apache.felix.examples.dictionaryservice</artifactId> |
| <version>0.9.0-SNAPSHOT</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <!-- Added to test exclusions: its not a bundle so we want to exclude it --> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>3.8.1</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| </dependencies> |
| <build> |
| <plugins> |
| |
| <plugin> |
| <groupId>org.apache.felix.plugins</groupId> |
| <artifactId>maven-felix-plugin</artifactId> |
| <version>0.9.0-SNAPSHOT</version> |
| <executions> |
| <execution> |
| <id>run</id> |
| <configuration> |
| <felixCacheDir>${basedir}/target/.felix</felixCacheDir> |
| <exclusions> |
| <exclusion>junit:junit</exclusion> |
| </exclusions> |
| </configuration> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <version>1.1.0-SNAPSHOT</version> |
| <extensions>true</extensions> |
| <configuration> |
| <instructions> |
| <Private-Package>org.apache.felix.examples.dictionaryservice.itest.*</Private-Package> |
| <Bundle-Name>Dictionary Integration Test Example</Bundle-Name> |
| <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor> |
| <Bundle-Description> |
| A bundle using the dictionary service to test it. |
| </Bundle-Description> |
| <Bundle-Activator> |
| org.apache.felix.examples.dictionaryservice.itest.Activator |
| </Bundle-Activator> |
| </instructions> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |