blob: 7c4674c20ebcd4755e7f26d8fddf11c31b730fd9 [file] [log] [blame]
Clement Escoffierfb9045d2008-10-14 10:44:18 +00001<!--
2 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.
18-->
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 Escoffier451525d2008-10-14 10:42:54 +000031 <version>1.0.0</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 Escoffier451525d2008-10-14 10:42:54 +000046 <version>1.0.0</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 Escoffier451525d2008-10-14 10:42:54 +000051 <version>1.0.0</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>
Clement Escoffier2ae452a2008-08-13 14:14:55 +000076 <Bundle-DocURL>
77 http://felix.apache.org/site/apache-felix-ipojo.html
78 </Bundle-DocURL>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000079 <IPOJO-Extension>
80 component:org.apache.felix.ipojo.ComponentFactory,
Clement Escoffier52618902008-05-13 22:54:25 +000081 handler:org.apache.felix.ipojo.HandlerManagerFactory
Clement Escoffierce0e1e52008-03-28 15:33:36 +000082 </IPOJO-Extension>
83 <Import-Package>
84 org.osgi.framework, org.osgi.service.cm,
85 org.osgi.service.log
86 </Import-Package>
87 <Private-Package>
88 org.apache.felix.ipojo.handlers.architecture,
89 org.apache.felix.ipojo.handlers.configuration,
90 org.apache.felix.ipojo.handlers.lifecycle.callback,
91 org.apache.felix.ipojo.handlers.lifecycle.controller
92 </Private-Package>
93 <Export-Package>
Clement Escoffier218dbd12008-05-26 18:50:39 +000094 org.apache.felix.ipojo; version="0.9.0",
Clement Escoffierce0e1e52008-03-28 15:33:36 +000095 org.apache.felix.ipojo.metadata;
Clement Escoffier218dbd12008-05-26 18:50:39 +000096 version="0.9.0",
Clement Escoffierce0e1e52008-03-28 15:33:36 +000097 org.apache.felix.ipojo.architecture;
Clement Escoffier218dbd12008-05-26 18:50:39 +000098 version="0.9.0",
Clement Escoffierce0e1e52008-03-28 15:33:36 +000099 org.apache.felix.ipojo.parser;
Clement Escoffier218dbd12008-05-26 18:50:39 +0000100 version="0.9.0",
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000101 org.apache.felix.ipojo.util;
Clement Escoffier218dbd12008-05-26 18:50:39 +0000102 version="0.9.0",
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000103 org.apache.felix.ipojo.handlers.dependency;
Clement Escoffier218dbd12008-05-26 18:50:39 +0000104 version="0.9.0",
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000105 org.apache.felix.ipojo.handlers.providedservice;
Clement Escoffier218dbd12008-05-26 18:50:39 +0000106 version="0.9.0",
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000107 org.apache.felix.ipojo.context;
Clement Escoffier218dbd12008-05-26 18:50:39 +0000108 version="0.9.0", org.osgi.service.cm,
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000109 org.osgi.service.log
110 </Export-Package>
Clement Escoffier9d7a0052008-05-05 18:30:18 +0000111 <Include-Resource>
112 META-INF/LICENCE=LICENSE,
113 META-INF/NOTICE=NOTICE
114 </Include-Resource>
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000115 <_donotcopy>
116 (CVS|.svn|.+.bak|~.+|metadata.xml)
117 </_donotcopy>
118 </instructions>
119 </configuration>
120 </plugin>
121 <plugin>
122 <groupId>org.apache.felix</groupId>
123 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier451525d2008-10-14 10:42:54 +0000124 <version>1.0.0</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000125 <executions>
126 <execution>
127 <goals>
128 <goal>ipojo-bundle</goal>
129 </goals>
130 <configuration>
131 <metadata>metadata.xml</metadata>
132 <ignoreAnnotations>true</ignoreAnnotations>
133 </configuration>
134 </execution>
135 </executions>
136 </plugin>
137 </plugins>
138 </build>
Clement Escoffier451525d2008-10-14 10:42:54 +0000139
140 <scm>
141 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo-1.0.0</connection>
142 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo-1.0.0</developerConnection>
143 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo-1.0.0</url>
144 </scm>
145</project>