blob: bb081cbc0ffc17eb2318116729b54b05240559c4 [file] [log] [blame]
Carsten Ziegelerbf338dd2008-01-03 09:11:33 +00001<!--
2Licensed to the Apache Software Foundation (ASF) under one
3or more contributor license agreements. See the NOTICE file
4distributed with this work for additional information
5regarding copyright ownership. The ASF licenses this file
6to you under the Apache License, Version 2.0 (the
7"License"); you may not use this file except in compliance
8with the License. You may obtain a copy of the License at
9
10http://www.apache.org/licenses/LICENSE-2.0
11
12Unless required by applicable law or agreed to in writing,
13software distributed under the License is distributed on an
14"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15KIND, either express or implied. See the License for the
16specific language governing permissions and limitations
17under the License.
18-->
Alex Karasulu1d346cd2006-08-17 18:18:19 +000019<project>
20 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
Clement Escoffier4ae86972009-04-09 12:09:09 +000023 <version>1.0.4</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000024 <relativePath>../../pom/pom.xml</relativePath>
Alex Karasulu1d346cd2006-08-17 18:18:19 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
Richard S. Hall46754b52007-07-16 18:36:11 +000027 <packaging>bundle</packaging>
Richard S. Hall02496082007-08-23 15:29:20 +000028 <name>Apache Felix Example Dictionary Service Integration Test</name>
Alex Karasulud24aff72006-08-17 18:22:19 +000029 <artifactId>org.apache.felix.examples.dictionaryservice.itest</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000030 <version>0.9.0-SNAPSHOT</version>
Alex Karasulu1d346cd2006-08-17 18:18:19 +000031 <dependencies>
32 <dependency>
33 <groupId>${pom.groupId}</groupId>
34 <artifactId>org.osgi.core</artifactId>
Richard S. Hall02496082007-08-23 15:29:20 +000035 <version>1.0.0</version>
Alex Karasulu1d346cd2006-08-17 18:18:19 +000036 <scope>provided</scope>
37 </dependency>
38 <dependency>
39 <groupId>${pom.groupId}</groupId>
40 <artifactId>org.apache.felix.examples.dictionaryservice</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000041 <version>0.9.0-SNAPSHOT</version>
Alex Karasulu1d346cd2006-08-17 18:18:19 +000042 <scope>provided</scope>
43 </dependency>
Alex Karasuluea25b702006-08-17 18:45:32 +000044
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 Karasulu1d346cd2006-08-17 18:18:19 +000053 </dependencies>
54 <build>
55 <plugins>
Alex Karasuluea25b702006-08-17 18:45:32 +000056
57 <plugin>
58 <groupId>org.apache.felix.plugins</groupId>
59 <artifactId>maven-felix-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000060 <version>0.9.0-SNAPSHOT</version>
Alex Karasuluea25b702006-08-17 18:45:32 +000061 <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 Karasulu1d346cd2006-08-17 18:18:19 +000077 <plugin>
Richard S. Hall46754b52007-07-16 18:36:11 +000078 <groupId>org.apache.felix</groupId>
79 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCulloch876ca722008-02-26 17:15:42 +000080 <version>1.4.0</version>
Alex Karasulu1d346cd2006-08-17 18:18:19 +000081 <extensions>true</extensions>
82 <configuration>
Richard S. Hall46754b52007-07-16 18:36:11 +000083 <instructions>
Richard S. Hall02496082007-08-23 15:29:20 +000084 <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 Ziegelercf6e51b2008-04-17 06:33:59 +000089 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Richard S. Hall46754b52007-07-16 18:36:11 +000090 <Bundle-Description>
Alex Karasulud24aff72006-08-17 18:22:19 +000091 A bundle using the dictionary service to test it.
Richard S. Hall46754b52007-07-16 18:36:11 +000092 </Bundle-Description>
93 <Bundle-Activator>
Alex Karasulud24aff72006-08-17 18:22:19 +000094 org.apache.felix.examples.dictionaryservice.itest.Activator
Richard S. Hall46754b52007-07-16 18:36:11 +000095 </Bundle-Activator>
96 </instructions>
Alex Karasulu1d346cd2006-08-17 18:18:19 +000097 </configuration>
98 </plugin>
99 </plugins>
100 </build>
101</project>