Carsten Ziegeler | bf338dd | 2008-01-03 09:11:33 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | Licensed to the Apache Software Foundation (ASF) under one |
| 3 | or more contributor license agreements. See the NOTICE file |
| 4 | distributed with this work for additional information |
| 5 | regarding copyright ownership. The ASF licenses this file |
| 6 | to you under the Apache License, Version 2.0 (the |
| 7 | "License"); you may not use this file except in compliance |
| 8 | with the License. You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, |
| 13 | software distributed under the License is distributed on an |
| 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | KIND, either express or implied. See the License for the |
| 16 | specific language governing permissions and limitations |
| 17 | under the License. |
| 18 | --> |
Alex Karasulu | 1d346cd | 2006-08-17 18:18:19 +0000 | [diff] [blame] | 19 | <project> |
| 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix</artifactId> |
Clement Escoffier | 4ae8697 | 2009-04-09 12:09:09 +0000 | [diff] [blame] | 23 | <version>1.0.4</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 24 | <relativePath>../../pom/pom.xml</relativePath> |
Alex Karasulu | 1d346cd | 2006-08-17 18:18:19 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
Richard S. Hall | 46754b5 | 2007-07-16 18:36:11 +0000 | [diff] [blame] | 27 | <packaging>bundle</packaging> |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 28 | <name>Apache Felix Example Dictionary Service Integration Test</name> |
Alex Karasulu | d24aff7 | 2006-08-17 18:22:19 +0000 | [diff] [blame] | 29 | <artifactId>org.apache.felix.examples.dictionaryservice.itest</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 30 | <version>0.9.0-SNAPSHOT</version> |
Alex Karasulu | 1d346cd | 2006-08-17 18:18:19 +0000 | [diff] [blame] | 31 | <dependencies> |
| 32 | <dependency> |
| 33 | <groupId>${pom.groupId}</groupId> |
| 34 | <artifactId>org.osgi.core</artifactId> |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 35 | <version>1.0.0</version> |
Alex Karasulu | 1d346cd | 2006-08-17 18:18:19 +0000 | [diff] [blame] | 36 | <scope>provided</scope> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>${pom.groupId}</groupId> |
| 40 | <artifactId>org.apache.felix.examples.dictionaryservice</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 41 | <version>0.9.0-SNAPSHOT</version> |
Alex Karasulu | 1d346cd | 2006-08-17 18:18:19 +0000 | [diff] [blame] | 42 | <scope>provided</scope> |
| 43 | </dependency> |
Alex Karasulu | ea25b70 | 2006-08-17 18:45:32 +0000 | [diff] [blame] | 44 | |
| 45 | <!-- Added to test exclusions: its not a bundle so we want to exclude it --> |
| 46 | <dependency> |
| 47 | <groupId>junit</groupId> |
| 48 | <artifactId>junit</artifactId> |
| 49 | <version>3.8.1</version> |
| 50 | <scope>provided</scope> |
| 51 | </dependency> |
| 52 | |
Alex Karasulu | 1d346cd | 2006-08-17 18:18:19 +0000 | [diff] [blame] | 53 | </dependencies> |
| 54 | <build> |
| 55 | <plugins> |
Alex Karasulu | ea25b70 | 2006-08-17 18:45:32 +0000 | [diff] [blame] | 56 | |
| 57 | <plugin> |
| 58 | <groupId>org.apache.felix.plugins</groupId> |
| 59 | <artifactId>maven-felix-plugin</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 60 | <version>0.9.0-SNAPSHOT</version> |
Alex Karasulu | ea25b70 | 2006-08-17 18:45:32 +0000 | [diff] [blame] | 61 | <executions> |
| 62 | <execution> |
| 63 | <id>run</id> |
| 64 | <configuration> |
| 65 | <felixCacheDir>${basedir}/target/.felix</felixCacheDir> |
| 66 | <exclusions> |
| 67 | <exclusion>junit:junit</exclusion> |
| 68 | </exclusions> |
| 69 | </configuration> |
| 70 | <goals> |
| 71 | <goal>run</goal> |
| 72 | </goals> |
| 73 | </execution> |
| 74 | </executions> |
| 75 | </plugin> |
| 76 | |
Alex Karasulu | 1d346cd | 2006-08-17 18:18:19 +0000 | [diff] [blame] | 77 | <plugin> |
Richard S. Hall | 46754b5 | 2007-07-16 18:36:11 +0000 | [diff] [blame] | 78 | <groupId>org.apache.felix</groupId> |
| 79 | <artifactId>maven-bundle-plugin</artifactId> |
Stuart McCulloch | 876ca72 | 2008-02-26 17:15:42 +0000 | [diff] [blame] | 80 | <version>1.4.0</version> |
Alex Karasulu | 1d346cd | 2006-08-17 18:18:19 +0000 | [diff] [blame] | 81 | <extensions>true</extensions> |
| 82 | <configuration> |
Richard S. Hall | 46754b5 | 2007-07-16 18:36:11 +0000 | [diff] [blame] | 83 | <instructions> |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 84 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 85 | <Private-Package> |
| 86 | org.apache.felix.examples.dictionaryservice.itest.* |
| 87 | </Private-Package> |
| 88 | <Bundle-Name>Example Dictionary Integration Test</Bundle-Name> |
Carsten Ziegeler | cf6e51b | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 89 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Richard S. Hall | 46754b5 | 2007-07-16 18:36:11 +0000 | [diff] [blame] | 90 | <Bundle-Description> |
Alex Karasulu | d24aff7 | 2006-08-17 18:22:19 +0000 | [diff] [blame] | 91 | A bundle using the dictionary service to test it. |
Richard S. Hall | 46754b5 | 2007-07-16 18:36:11 +0000 | [diff] [blame] | 92 | </Bundle-Description> |
| 93 | <Bundle-Activator> |
Alex Karasulu | d24aff7 | 2006-08-17 18:22:19 +0000 | [diff] [blame] | 94 | org.apache.felix.examples.dictionaryservice.itest.Activator |
Richard S. Hall | 46754b5 | 2007-07-16 18:36:11 +0000 | [diff] [blame] | 95 | </Bundle-Activator> |
| 96 | </instructions> |
Alex Karasulu | 1d346cd | 2006-08-17 18:18:19 +0000 | [diff] [blame] | 97 | </configuration> |
| 98 | </plugin> |
| 99 | </plugins> |
| 100 | </build> |
| 101 | </project> |