blob: 64e0632765460c758a1d0c12cd235b0328704a8e [file] [log] [blame]
Pierre De Rop22383682010-01-14 21:58:44 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Pierre De Rop452f4382010-06-21 09:46:37 +00002 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <packaging>bundle</packaging>
5 <groupId>test</groupId>
6 <artifactId>org.apache.felix.dependencymanager.samples.annotation</artifactId>
Pierre De Rop22383682010-01-14 21:58:44 +00007 <version>3.0.0-SNAPSHOT</version>
Pierre De Rop452f4382010-06-21 09:46:37 +00008 <name>Apache Felix Dependency Manager Annotation Samples</name>
9
10 <dependencies>
11 <dependency>
12 <groupId>org.osgi</groupId>
13 <artifactId>org.osgi.core</artifactId>
Pierre De Rop452f4382010-06-21 09:46:37 +000014 </dependency>
15 <dependency>
16 <groupId>org.osgi</groupId>
17 <artifactId>org.osgi.compendium</artifactId>
Pierre De Rop452f4382010-06-21 09:46:37 +000018 </dependency>
19 <dependency>
Marcel Offermansecd32b02010-08-18 13:41:45 +000020 <groupId>${pom.groupId}</groupId>
Pierre De Rop452f4382010-06-21 09:46:37 +000021 <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
Pierre De Rop452f4382010-06-21 09:46:37 +000022 </dependency>
23 <dependency>
Marcel Offermansecd32b02010-08-18 13:41:45 +000024 <groupId>${pom.groupId}</groupId>
Pierre De Rop452f4382010-06-21 09:46:37 +000025 <artifactId>org.apache.felix.gogo.runtime</artifactId>
Pierre De Rop452f4382010-06-21 09:46:37 +000026 </dependency>
27 </dependencies>
28
29 <build>
30 <plugins>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-compiler-plugin</artifactId>
34 <configuration>
35 <source>1.5</source>
36 <target>1.5</target>
37 </configuration>
38 </plugin>
39
40 <plugin>
41 <groupId>org.apache.felix</groupId>
42 <artifactId>maven-bundle-plugin</artifactId>
43 <version>1.4.0</version>
44 <extensions>true</extensions>
45 <configuration>
46 <instructions>
47 <Bundle-Name>Apache Felix Dependency Manager Annotation Sample</Bundle-Name>
48 <Bundle-SymbolicName>org.apache.felix.dependencymanager.samples.annotation</Bundle-SymbolicName>
49 <Import-Package>*</Import-Package>
50 <Private-Package>org.apache.felix.dm.samples.annotation</Private-Package>
51 </instructions>
52 </configuration>
53 </plugin>
54
55 <plugin>
56 <groupId>org.apache.felix</groupId>
57 <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
58 <version>3.0.0-SNAPSHOT</version>
59 <executions>
60 <execution>
61 <goals>
62 <goal>scan</goal>
63 </goals>
64 </execution>
65 </executions>
66 </plugin>
67 </plugins>
68 </build>
Pierre De Rop22383682010-01-14 21:58:44 +000069</project>