blob: d6f58d27b4a4708f5255c8a740967e222241665d [file] [log] [blame]
Carsten Ziegelerc19e17c2008-01-03 09:15:17 +00001<!--
Clement Escoffierce0e1e52008-03-28 15:33:36 +00002 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
Carsten Ziegelerc19e17c2008-01-03 09:15:17 +000018-->
Clement Escoffier8a109572008-05-18 22:27:28 +000019<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">
Clement Escoffierce0e1e52008-03-28 15:33:36 +000020 <parent>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000021 <groupId>org.apache.felix</groupId>
Clement Escoffier7d116ff2008-03-29 15:04:02 +000022 <artifactId>felix</artifactId>
23 <version>1.0.2</version>
24 <relativePath>../../pom/pom.xml</relativePath>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Apache Felix iPOJO</name>
29 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier7d116ff2008-03-29 15:04:02 +000030 <groupId>org.apache.felix</groupId>
Clement Escoffier02fb44b2008-05-18 22:27:40 +000031 <version>0.9.0-SNAPSHOT</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000032 <dependencies>
33 <dependency>
Clement Escoffier4a12e332008-04-07 13:29:34 +000034 <groupId>org.apache.felix</groupId>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000035 <artifactId>org.osgi.core</artifactId>
36 <version>1.0.0</version>
37 </dependency>
38 <dependency>
Clement Escoffier4a12e332008-04-07 13:29:34 +000039 <groupId>org.apache.felix</groupId>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000040 <artifactId>org.osgi.compendium</artifactId>
41 <version>1.0.0</version>
42 </dependency>
43 <dependency>
Clement Escoffier4a12e332008-04-07 13:29:34 +000044 <groupId>org.apache.felix</groupId>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000045 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier2ca814e2008-05-19 01:47:07 +000046 <version>0.9.0-SNAPSHOT</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000047 </dependency>
48 <dependency>
Clement Escoffier4a12e332008-04-07 13:29:34 +000049 <groupId>org.apache.felix</groupId>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000050 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier2ca814e2008-05-19 01:47:07 +000051 <version>0.9.0-SNAPSHOT</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000052 </dependency>
53 </dependencies>
54 <build>
55 <plugins>
56 <plugin>
57 <groupId>org.apache.felix</groupId>
58 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier9fc9a3c2008-08-11 09:55:34 +000059 <version>1.4.2</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000060 <extensions>true</extensions>
61 <configuration>
62 <instructions>
63 <Bundle-Name>iPOJO</Bundle-Name>
Clement Escoffier9d7a0052008-05-05 18:30:18 +000064 <Bundle-Vendor>
65 The Apache Software Foundation
66 </Bundle-Vendor>
Clement Escoffierc9e6d252008-06-11 15:11:13 +000067 <Bundle-SymbolicName>
68 org.apache.felix.ipojo
69 </Bundle-SymbolicName>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000070 <Bundle-Description>
71 iPOJO Core Framework
72 </Bundle-Description>
73 <Bundle-Activator>
74 org.apache.felix.ipojo.Extender
75 </Bundle-Activator>
76 <IPOJO-Extension>
77 component:org.apache.felix.ipojo.ComponentFactory,
Clement Escoffier52618902008-05-13 22:54:25 +000078 handler:org.apache.felix.ipojo.HandlerManagerFactory
Clement Escoffierce0e1e52008-03-28 15:33:36 +000079 </IPOJO-Extension>
80 <Import-Package>
81 org.osgi.framework, org.osgi.service.cm,
82 org.osgi.service.log
83 </Import-Package>
84 <Private-Package>
85 org.apache.felix.ipojo.handlers.architecture,
86 org.apache.felix.ipojo.handlers.configuration,
87 org.apache.felix.ipojo.handlers.lifecycle.callback,
88 org.apache.felix.ipojo.handlers.lifecycle.controller
89 </Private-Package>
90 <Export-Package>
Clement Escoffier218dbd12008-05-26 18:50:39 +000091 org.apache.felix.ipojo; version="0.9.0",
Clement Escoffierce0e1e52008-03-28 15:33:36 +000092 org.apache.felix.ipojo.metadata;
Clement Escoffier218dbd12008-05-26 18:50:39 +000093 version="0.9.0",
Clement Escoffierce0e1e52008-03-28 15:33:36 +000094 org.apache.felix.ipojo.architecture;
Clement Escoffier218dbd12008-05-26 18:50:39 +000095 version="0.9.0",
Clement Escoffierce0e1e52008-03-28 15:33:36 +000096 org.apache.felix.ipojo.parser;
Clement Escoffier218dbd12008-05-26 18:50:39 +000097 version="0.9.0",
Clement Escoffierce0e1e52008-03-28 15:33:36 +000098 org.apache.felix.ipojo.util;
Clement Escoffier218dbd12008-05-26 18:50:39 +000099 version="0.9.0",
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000100 org.apache.felix.ipojo.handlers.dependency;
Clement Escoffier218dbd12008-05-26 18:50:39 +0000101 version="0.9.0",
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000102 org.apache.felix.ipojo.handlers.providedservice;
Clement Escoffier218dbd12008-05-26 18:50:39 +0000103 version="0.9.0",
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000104 org.apache.felix.ipojo.context;
Clement Escoffier218dbd12008-05-26 18:50:39 +0000105 version="0.9.0", org.osgi.service.cm,
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000106 org.osgi.service.log
107 </Export-Package>
Clement Escoffier9d7a0052008-05-05 18:30:18 +0000108 <Include-Resource>
109 META-INF/LICENCE=LICENSE,
110 META-INF/NOTICE=NOTICE
111 </Include-Resource>
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000112 <_donotcopy>
113 (CVS|.svn|.+.bak|~.+|metadata.xml)
114 </_donotcopy>
115 </instructions>
116 </configuration>
117 </plugin>
118 <plugin>
119 <groupId>org.apache.felix</groupId>
120 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier2ca814e2008-05-19 01:47:07 +0000121 <version>0.9.0-SNAPSHOT</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000122 <executions>
123 <execution>
124 <goals>
125 <goal>ipojo-bundle</goal>
126 </goals>
127 <configuration>
128 <metadata>metadata.xml</metadata>
129 <ignoreAnnotations>true</ignoreAnnotations>
130 </configuration>
131 </execution>
132 </executions>
133 </plugin>
134 </plugins>
135 </build>
Richard S. Hall7fa14152006-06-14 15:22:03 +0000136</project>