blob: b997c9778f54093e2e7faa59e9ebab92403984d8 [file] [log] [blame]
Clement Escoffierb6a333d2008-10-14 10:51:53 +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 Composite</name>
11 <artifactId>org.apache.felix.ipojo.composite</artifactId>
12 <groupId>org.apache.felix</groupId>
13 <version>1.0.0</version>
14 <dependencies>
15 <dependency>
16 <groupId>org.apache.felix</groupId>
17 <artifactId>org.osgi.core</artifactId>
18 <version>1.0.0</version>
19 </dependency>
20 <dependency>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>org.osgi.compendium</artifactId>
23 <version>1.0.0</version>
24 </dependency>
25 <dependency>
26 <groupId>org.apache.felix</groupId>
27 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
28 <version>1.0.0</version>
29 </dependency>
30 <dependency>
31 <groupId>org.apache.felix</groupId>
32 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
33 <version>1.0.0</version>
34 </dependency>
35 <dependency>
36 <groupId>org.apache.felix</groupId>
37 <artifactId>org.apache.felix.ipojo</artifactId>
38 <version>1.0.0</version>
39 </dependency>
40 </dependencies>
41 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>maven-bundle-plugin</artifactId>
46 <version>1.4.2</version>
47 <extensions>true</extensions>
48 <configuration>
49 <instructions>
50 <Bundle-Name>iPOJO Composite</Bundle-Name>
51 <Bundle-Vendor>
52 The Apache Software Foundation
53 </Bundle-Vendor>
54 <Bundle-Description>
55 iPOJO Composititon Framework
56 </Bundle-Description>
57 <Bundle-DocURL>
58 http://felix.apache.org/site/apache-felix-ipojo.html
59 </Bundle-DocURL>
60 <Import-Package>
61 org.apache.felix.ipojo,
62 org.apache.felix.ipojo.architecture,
63 org.apache.felix.ipojo.context,
64 org.apache.felix.ipojo.metadata,
65 org.apache.felix.ipojo.parser,
66 org.apache.felix.ipojo.util,
67 org.osgi.framework
68 </Import-Package>
69 <Private-Package>
70 org.apache.felix.ipojo.manipulation,
71 org.apache.felix.ipojo.composite.architecture,
72 org.apache.felix.ipojo.composite.service*,
73 org.apache.felix.ipojo.composite.instance,
74 org.apache.felix.ipojo.composite.util,
75 !org.objectweb.asm.xml*,
76 org.objectweb.asm*;-split-package:=merge-first
77 </Private-Package>
78 <Export-Package>
79 org.apache.felix.ipojo.composite;
80 version="0.9.0"
81 </Export-Package>
82 <Include-Resource>
83 META-INF/LICENSE=LICENSE,
84 META-INF/NOTICE=NOTICE,
85 META-INF/LICENSE.asm=LICENSE.asm
86 </Include-Resource>
87 <IPOJO-Extension>
88 composite:org.apache.felix.ipojo.composite.CompositeFactory
89 </IPOJO-Extension>
90 <_donotcopy>
91 (CVS|.svn|.+.bak|~.+|metadata.xml)
92 </_donotcopy>
93 </instructions>
94 </configuration>
95 </plugin>
96 <plugin>
97 <groupId>org.apache.felix</groupId>
98 <artifactId>maven-ipojo-plugin</artifactId>
99 <version>1.0.0</version>
100 <executions>
101 <execution>
102 <goals>
103 <goal>ipojo-bundle</goal>
104 </goals>
105 <configuration>
106 <metadata>metadata.xml</metadata>
107 <ignoreAnnotations>true</ignoreAnnotations>
108 </configuration>
109 </execution>
110 </executions>
111 </plugin>
112 </plugins>
113 </build>
114
115 <scm>
116 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.composite-1.0.0</connection>
117 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.composite-1.0.0</developerConnection>
118 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.composite-1.0.0</url>
119 </scm>
120</project>