Alex Karasulu | 1d346cd | 2006-08-17 18:18:19 +0000 | [diff] [blame] | 1 | <project> |
| 2 | <parent> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
| 5 | <version>0.8.0-SNAPSHOT</version> |
| 6 | </parent> |
| 7 | <modelVersion>4.0.0</modelVersion> |
| 8 | <packaging>osgi-bundle</packaging> |
Alex Karasulu | d24aff7 | 2006-08-17 18:22:19 +0000 | [diff] [blame] | 9 | <name>Apache Felix Examples: Dictionary Service Integration Test</name> |
| 10 | <artifactId>org.apache.felix.examples.dictionaryservice.itest</artifactId> |
Alex Karasulu | 1d346cd | 2006-08-17 18:18:19 +0000 | [diff] [blame] | 11 | <dependencies> |
| 12 | <dependency> |
| 13 | <groupId>${pom.groupId}</groupId> |
| 14 | <artifactId>org.osgi.core</artifactId> |
| 15 | <version>${pom.version}</version> |
| 16 | <scope>provided</scope> |
| 17 | </dependency> |
| 18 | <dependency> |
| 19 | <groupId>${pom.groupId}</groupId> |
| 20 | <artifactId>org.apache.felix.examples.dictionaryservice</artifactId> |
| 21 | <version>${pom.version}</version> |
| 22 | <scope>provided</scope> |
| 23 | </dependency> |
Alex Karasulu | ea25b70 | 2006-08-17 18:45:32 +0000 | [diff] [blame] | 24 | |
| 25 | <!-- Added to test exclusions: its not a bundle so we want to exclude it --> |
| 26 | <dependency> |
| 27 | <groupId>junit</groupId> |
| 28 | <artifactId>junit</artifactId> |
| 29 | <version>3.8.1</version> |
| 30 | <scope>provided</scope> |
| 31 | </dependency> |
| 32 | |
Alex Karasulu | 1d346cd | 2006-08-17 18:18:19 +0000 | [diff] [blame] | 33 | </dependencies> |
| 34 | <build> |
| 35 | <plugins> |
Alex Karasulu | ea25b70 | 2006-08-17 18:45:32 +0000 | [diff] [blame] | 36 | |
| 37 | <plugin> |
| 38 | <groupId>org.apache.felix.plugins</groupId> |
| 39 | <artifactId>maven-felix-plugin</artifactId> |
| 40 | <executions> |
| 41 | <execution> |
| 42 | <id>run</id> |
| 43 | <configuration> |
| 44 | <felixCacheDir>${basedir}/target/.felix</felixCacheDir> |
| 45 | <exclusions> |
| 46 | <exclusion>junit:junit</exclusion> |
| 47 | </exclusions> |
| 48 | </configuration> |
| 49 | <goals> |
| 50 | <goal>run</goal> |
| 51 | </goals> |
| 52 | </execution> |
| 53 | </executions> |
| 54 | </plugin> |
| 55 | |
Alex Karasulu | 1d346cd | 2006-08-17 18:18:19 +0000 | [diff] [blame] | 56 | <plugin> |
| 57 | <groupId>org.apache.felix.plugins</groupId> |
| 58 | <artifactId>maven-osgi-plugin</artifactId> |
| 59 | <version>${pom.version}</version> |
| 60 | <extensions>true</extensions> |
| 61 | <configuration> |
| 62 | <osgiManifest> |
Alex Karasulu | d24aff7 | 2006-08-17 18:22:19 +0000 | [diff] [blame] | 63 | <bundleName>Dictionary Integration Test Example</bundleName> |
Alex Karasulu | 1d346cd | 2006-08-17 18:18:19 +0000 | [diff] [blame] | 64 | <bundleVendor>Apache Software Foundation</bundleVendor> |
| 65 | <bundleDescription> |
Alex Karasulu | d24aff7 | 2006-08-17 18:22:19 +0000 | [diff] [blame] | 66 | A bundle using the dictionary service to test it. |
Alex Karasulu | 1d346cd | 2006-08-17 18:18:19 +0000 | [diff] [blame] | 67 | </bundleDescription> |
| 68 | <bundleActivator> |
Alex Karasulu | d24aff7 | 2006-08-17 18:22:19 +0000 | [diff] [blame] | 69 | org.apache.felix.examples.dictionaryservice.itest.Activator |
Alex Karasulu | 1d346cd | 2006-08-17 18:18:19 +0000 | [diff] [blame] | 70 | </bundleActivator> |
| 71 | <importPackage> |
| 72 | org.osgi.framework, org.apache.felix.examples.dictionaryservice |
| 73 | </importPackage> |
| 74 | </osgiManifest> |
| 75 | </configuration> |
| 76 | </plugin> |
| 77 | </plugins> |
| 78 | </build> |
| 79 | </project> |