blob: 13620bb9abab0ef27c1e4f43d2132a54ab0236c5 [file] [log] [blame]
Pierre De Rop18929942010-01-11 21:48:36 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <parent>
4 <groupId>org.apache.felix</groupId>
5 <artifactId>felix</artifactId>
6 <version>1.0.4</version>
7 <relativePath>../../../pom/pom.xml</relativePath>
8 </parent>
9 <modelVersion>4.0.0</modelVersion>
10 <packaging>bundle</packaging>
11 <name>Apache Felix Dependency Manager Annotation Tests</name>
12 <artifactId>org.apache.felix.dependencymanager.test.annotation</artifactId>
13 <version>3.0.0-SNAPSHOT</version>
14
15 <dependencies>
16 <dependency>
17 <groupId>org.osgi</groupId>
18 <artifactId>org.osgi.core</artifactId>
19 <version>4.1.0</version>
20 </dependency>
21 <dependency>
22 <groupId>org.osgi</groupId>
23 <artifactId>org.osgi.compendium</artifactId>
24 <version>4.1.0</version>
25 </dependency>
26 <dependency>
27 <groupId>org.apache.felix</groupId>
28 <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
29 <version>3.0.0-SNAPSHOT</version>
30 </dependency>
31 </dependencies>
32
33 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-compiler-plugin</artifactId>
38 <configuration>
39 <source>1.5</source>
40 <target>1.5</target>
41 </configuration>
42 </plugin>
43 <plugin>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>maven-bundle-plugin</artifactId>
46 <version>1.4.0</version>
47 <extensions>true</extensions>
48 <configuration>
49 <instructions>
50 <Bundle-Name>test.annotation.component</Bundle-Name>
51 <Bundle-SymbolicName>org.apache.felix.dependencymanager.test.annotation</Bundle-SymbolicName>
52 <Import-Package>*</Import-Package>
53 <Export-Package>org.apache.felix.dm.test.annotation</Export-Package>
54 </instructions>
55 </configuration>
56 </plugin>
57 <plugin>
58 <groupId>org.apache.felix</groupId>
59 <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
60 <version>3.0.0-SNAPSHOT</version>
61 <executions>
62 <execution>
63 <goals>
64 <goal>scan</goal>
65 </goals>
66 </execution>
67 </executions>
68 </plugin>
69 </plugins>
70 </build>
71</project>