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