blob: 9a09ac84814b122fcc656ffe754f3d136d4f523a [file] [log] [blame]
Clement Escoffiere50ede52008-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 Escoffierb7cb85a2008-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 Escoffiere50ede52008-03-28 15:33:36 +000020 <parent>
Clement Escoffiere50ede52008-03-28 15:33:36 +000021 <groupId>org.apache.felix</groupId>
Clement Escoffiera4142112008-03-29 15:04:02 +000022 <artifactId>felix</artifactId>
23 <version>1.0.2</version>
24 <relativePath>../../pom/pom.xml</relativePath>
Clement Escoffiere50ede52008-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 Escoffiera4142112008-03-29 15:04:02 +000030 <groupId>org.apache.felix</groupId>
Clement Escoffierb7cb85a2008-05-18 23:02:36 +000031 <version>0.8.0</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000032 <dependencies>
33 <dependency>
Clement Escoffier65fd7342008-04-07 13:29:34 +000034 <groupId>org.apache.felix</groupId>
Clement Escoffiere50ede52008-03-28 15:33:36 +000035 <artifactId>org.osgi.core</artifactId>
36 <version>1.0.0</version>
37 </dependency>
38 <dependency>
Clement Escoffier65fd7342008-04-07 13:29:34 +000039 <groupId>org.apache.felix</groupId>
Clement Escoffiere50ede52008-03-28 15:33:36 +000040 <artifactId>org.osgi.compendium</artifactId>
41 <version>1.0.0</version>
42 </dependency>
43 <dependency>
Clement Escoffier65fd7342008-04-07 13:29:34 +000044 <groupId>org.apache.felix</groupId>
Clement Escoffiere50ede52008-03-28 15:33:36 +000045 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffierb7cb85a2008-05-18 23:02:36 +000046 <version>0.8.0</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000047 </dependency>
48 <dependency>
Clement Escoffier65fd7342008-04-07 13:29:34 +000049 <groupId>org.apache.felix</groupId>
Clement Escoffiere50ede52008-03-28 15:33:36 +000050 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffierb7cb85a2008-05-18 23:02:36 +000051 <version>0.8.0</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000052 </dependency>
53 <dependency>
Clement Escoffier65fd7342008-04-07 13:29:34 +000054 <groupId>org.apache.felix</groupId>
Clement Escoffiere50ede52008-03-28 15:33:36 +000055 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffierb7cb85a2008-05-18 23:02:36 +000056 <version>0.8.0</version>
Clement Escoffiere50ede52008-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 Escoffier6b928e92008-05-16 20:33:54 +000069 <Bundle-Vendor>
70 The Apache Software Foundation
71 </Bundle-Vendor>
Clement Escoffiere50ede52008-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 Escoffier8428e9d2008-05-05 18:30:18 +000095 version="0.8.0"
Clement Escoffiere50ede52008-03-28 15:33:36 +000096 </Export-Package>
Clement Escoffier6b928e92008-05-16 20:33:54 +000097 <Include-Resource>
98 META-INF/LICENCE=LICENSE,
99 META-INF/NOTICE=NOTICE
100 </Include-Resource>
Clement Escoffiere50ede52008-03-28 15:33:36 +0000101 <IPOJO-Extension>
102 composite:org.apache.felix.ipojo.composite.CompositeFactory
103 </IPOJO-Extension>
104 <_donotcopy>
105 (CVS|.svn|.+.bak|~.+|metadata.xml)
106 </_donotcopy>
107 </instructions>
108 </configuration>
109 </plugin>
110 <plugin>
111 <groupId>org.apache.felix</groupId>
112 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierb7cb85a2008-05-18 23:02:36 +0000113 <version>0.8.0</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +0000114 <executions>
115 <execution>
116 <goals>
117 <goal>ipojo-bundle</goal>
118 </goals>
119 <configuration>
120 <metadata>metadata.xml</metadata>
121 <ignoreAnnotations>true</ignoreAnnotations>
122 </configuration>
123 </execution>
124 </executions>
125 </plugin>
126 </plugins>
127 </build>
Clement Escoffierb7cb85a2008-05-18 23:02:36 +0000128
129 <scm>
130 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.composite-0.8.0</connection>
131 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.composite-0.8.0</developerConnection>
132 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.composite-0.8.0</url>
133 </scm>
Clement Escoffiere50ede52008-03-28 15:33:36 +0000134</project>