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