blob: b729506e0779887692a2171db04ba72c756455d7 [file] [log] [blame]
Clement Escoffierce0e1e52008-03-28 15:33:36 +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 Escoffier38c671c2008-05-18 23:02:36 +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 Composite</name>
29 <artifactId>org.apache.felix.ipojo.composite</artifactId>
Clement Escoffier7d116ff2008-03-29 15:04:02 +000030 <groupId>org.apache.felix</groupId>
Clement Escoffier25a26762008-06-16 16:42:41 +000031 <version>0.8.1-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 Escoffier3575f072008-06-06 12:12:01 +000046 <version>0.8.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 Escoffier3575f072008-06-06 12:12:01 +000051 <version>0.8.0</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000052 </dependency>
53 <dependency>
Clement Escoffier4a12e332008-04-07 13:29:34 +000054 <groupId>org.apache.felix</groupId>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000055 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier3575f072008-06-06 12:12:01 +000056 <version>0.8.0</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000057 </dependency>
58 </dependencies>
59 <build>
60 <plugins>
61 <plugin>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>maven-bundle-plugin</artifactId>
64 <version>1.4.0</version>
65 <extensions>true</extensions>
66 <configuration>
67 <instructions>
68 <Bundle-Name>iPOJO Composite</Bundle-Name>
Clement Escoffier50254022008-05-16 20:33:54 +000069 <Bundle-Vendor>
70 The Apache Software Foundation
71 </Bundle-Vendor>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000072 <Bundle-Description>
73 iPOJO Composititon Framework
74 </Bundle-Description>
75 <Import-Package>
76 org.apache.felix.ipojo,
77 org.apache.felix.ipojo.architecture,
78 org.apache.felix.ipojo.context,
79 org.apache.felix.ipojo.metadata,
80 org.apache.felix.ipojo.parser,
81 org.apache.felix.ipojo.util,
82 org.osgi.framework
83 </Import-Package>
84 <Private-Package>
85 org.apache.felix.ipojo.manipulation,
86 org.apache.felix.ipojo.composite.architecture,
87 org.apache.felix.ipojo.composite.service*,
88 org.apache.felix.ipojo.composite.instance,
89 org.apache.felix.ipojo.composite.util,
90 !org.objectweb.asm.xml*,
91 org.objectweb.asm*;-split-package:=merge-first
92 </Private-Package>
93 <Export-Package>
94 org.apache.felix.ipojo.composite;
Clement Escoffier3575f072008-06-06 12:12:01 +000095 version="0.8.0"
Clement Escoffierce0e1e52008-03-28 15:33:36 +000096 </Export-Package>
Clement Escoffier50254022008-05-16 20:33:54 +000097 <Include-Resource>
Clement Escoffier3575f072008-06-06 12:12:01 +000098 META-INF/LICENSE=LICENSE,
99 META-INF/NOTICE=NOTICE,
100 META-INF/LICENSE.asm=LICENSE.asm
Clement Escoffier50254022008-05-16 20:33:54 +0000101 </Include-Resource>
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000102 <IPOJO-Extension>
103 composite:org.apache.felix.ipojo.composite.CompositeFactory
104 </IPOJO-Extension>
105 <_donotcopy>
106 (CVS|.svn|.+.bak|~.+|metadata.xml)
107 </_donotcopy>
108 </instructions>
109 </configuration>
110 </plugin>
111 <plugin>
112 <groupId>org.apache.felix</groupId>
113 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier3575f072008-06-06 12:12:01 +0000114 <version>0.8.0</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000115 <executions>
116 <execution>
117 <goals>
118 <goal>ipojo-bundle</goal>
119 </goals>
120 <configuration>
121 <metadata>metadata.xml</metadata>
122 <ignoreAnnotations>true</ignoreAnnotations>
123 </configuration>
124 </execution>
125 </executions>
126 </plugin>
127 </plugins>
128 </build>
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000129</project>