blob: 2fb6a931719f31a0fb60b6d016e8db318c0925d0 [file] [log] [blame]
Clement Escoffier818b00d2008-10-14 11:37:34 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
5 <version>1.0.2</version>
6 <relativePath>../../pom/pom.xml</relativePath>
7 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <packaging>bundle</packaging>
10 <name>Apache Felix iPOJO Extender Pattern Handler</name>
11 <artifactId>
12 org.apache.felix.ipojo.handler.extender
13 </artifactId>
14 <groupId>org.apache.felix</groupId>
15 <version>1.0.0</version>
16
17 <dependencies>
18 <dependency>
19 <groupId>org.apache.felix</groupId>
20 <artifactId>org.apache.felix.ipojo</artifactId>
21 <version>1.0.0</version>
22 </dependency>
23 <dependency>
24 <groupId>org.apache.felix</groupId>
25 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
26 <version>1.0.0</version>
27 </dependency>
28 <dependency>
29 <groupId>org.apache.felix</groupId>
30 <artifactId>org.osgi.core</artifactId>
31 <version>1.0.0</version>
32 </dependency>
33 <dependency>
34 <groupId>org.apache.felix</groupId>
35 <artifactId>org.osgi.compendium</artifactId>
36 <version>1.0.0</version>
37 </dependency>
38 </dependencies>
39
40 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>maven-bundle-plugin</artifactId>
45 <extensions>true</extensions>
46 <configuration>
47 <instructions>
48 <Bundle-Vendor>
49 The Apache Software Foundation
50 </Bundle-Vendor>
51 <Bundle-Description>
52 iPOJO Extender Pattern Handler
53 </Bundle-Description>
54 <Bundle-DocURL>
55 http://felix.apache.org/site/extender-pattern-handler.html
56 </Bundle-DocURL>
57 <Private-Package>
58 org.apache.felix.ipojo.handler.extender
59 </Private-Package>
60 <Bundle-Name>${pom.name}</Bundle-Name>
61 <Bundle-SymbolicName>
62 org.apache.felix.ipojo.handler.extender.pattern
63 </Bundle-SymbolicName>
64 <Include-Resource>
65 META-INF/LICENCE=LICENSE,
66 META-INF/NOTICE=NOTICE
67 </Include-Resource>
68 </instructions>
69 </configuration>
70 </plugin>
71 <plugin>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>maven-ipojo-plugin</artifactId>
74 <version>1.0.0</version>
75 <executions>
76 <execution>
77 <goals>
78 <goal>ipojo-bundle</goal>
79 </goals>
80 <configuration>
81 <metadata>metadata.xml</metadata>
82 </configuration>
83 </execution>
84 </executions>
85 </plugin>
86 </plugins>
87 </build>
88
89 <scm>
90 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.extender-1.0.0</connection>
91 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.extender-1.0.0</developerConnection>
92 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.extender-1.0.0</url>
93 </scm>
94</project>