blob: 8bd38d1f05fa93ea30051ce7b5c8136e6c066f04 [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 Escoffier90b78a52008-06-16 16:50:44 +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 Escoffier9c1c87f2008-07-03 15:24:29 +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 Escoffier9c1c87f2008-07-03 15:24:29 +000051 <version>0.9.0-SNAPSHOT</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 Escoffier9c1c87f2008-07-03 15:24:29 +000056 <version>0.9.0-SNAPSHOT</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>
Clement Escoffier9fc9a3c2008-08-11 09:55:34 +000064 <version>1.4.2</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000065 <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>
Clement Escoffier2ae452a2008-08-13 14:14:55 +000075 <Bundle-DocURL>
76 http://felix.apache.org/site/apache-felix-ipojo.html
77 </Bundle-DocURL>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000078 <Import-Package>
79 org.apache.felix.ipojo,
80 org.apache.felix.ipojo.architecture,
81 org.apache.felix.ipojo.context,
82 org.apache.felix.ipojo.metadata,
83 org.apache.felix.ipojo.parser,
84 org.apache.felix.ipojo.util,
85 org.osgi.framework
86 </Import-Package>
87 <Private-Package>
88 org.apache.felix.ipojo.manipulation,
89 org.apache.felix.ipojo.composite.architecture,
90 org.apache.felix.ipojo.composite.service*,
91 org.apache.felix.ipojo.composite.instance,
92 org.apache.felix.ipojo.composite.util,
93 !org.objectweb.asm.xml*,
94 org.objectweb.asm*;-split-package:=merge-first
95 </Private-Package>
96 <Export-Package>
97 org.apache.felix.ipojo.composite;
Clement Escoffier9c1c87f2008-07-03 15:24:29 +000098 version="0.9.0"
Clement Escoffierce0e1e52008-03-28 15:33:36 +000099 </Export-Package>
Clement Escoffier50254022008-05-16 20:33:54 +0000100 <Include-Resource>
Clement Escoffier3575f072008-06-06 12:12:01 +0000101 META-INF/LICENSE=LICENSE,
102 META-INF/NOTICE=NOTICE,
103 META-INF/LICENSE.asm=LICENSE.asm
Clement Escoffier50254022008-05-16 20:33:54 +0000104 </Include-Resource>
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000105 <IPOJO-Extension>
106 composite:org.apache.felix.ipojo.composite.CompositeFactory
107 </IPOJO-Extension>
108 <_donotcopy>
109 (CVS|.svn|.+.bak|~.+|metadata.xml)
110 </_donotcopy>
111 </instructions>
112 </configuration>
113 </plugin>
114 <plugin>
115 <groupId>org.apache.felix</groupId>
116 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier9c1c87f2008-07-03 15:24:29 +0000117 <version>0.9.0-SNAPSHOT</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000118 <executions>
119 <execution>
120 <goals>
121 <goal>ipojo-bundle</goal>
122 </goals>
123 <configuration>
124 <metadata>metadata.xml</metadata>
125 <ignoreAnnotations>true</ignoreAnnotations>
126 </configuration>
127 </execution>
128 </executions>
129 </plugin>
130 </plugins>
131 </build>
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000132</project>