Carsten Ziegeler | c19e17c | 2008-01-03 09:15:17 +0000 | [diff] [blame] | 1 | <!-- |
| 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 | --> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 19 | <project> |
| 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix</artifactId> |
Carsten Ziegeler | b7251fa | 2008-01-16 07:37:24 +0000 | [diff] [blame] | 23 | <version>1.0.2</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 24 | <relativePath>../../pom/pom.xml</relativePath> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 27 | <packaging>bundle</packaging> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 28 | <name>Apache Felix iPOJO</name> |
| 29 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | 6c6ae8d | 2007-09-25 13:27:49 +0000 | [diff] [blame] | 30 | <version>0.7.5-SNAPSHOT</version> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 31 | <dependencies> |
| 32 | <dependency> |
| 33 | <groupId>${pom.groupId}</groupId> |
| 34 | <artifactId>org.osgi.core</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 35 | <version>1.1.0-SNAPSHOT</version> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 36 | </dependency> |
| 37 | <dependency> |
Richard S. Hall | 0b8ba0f | 2007-05-18 15:13:47 +0000 | [diff] [blame] | 38 | <groupId>${pom.groupId}</groupId> |
| 39 | <artifactId>org.osgi.compendium</artifactId> |
Carsten Ziegeler | c340ecf | 2008-01-28 07:21:59 +0000 | [diff] [blame] | 40 | <version>1.0.0</version> |
Richard S. Hall | 0b8ba0f | 2007-05-18 15:13:47 +0000 | [diff] [blame] | 41 | </dependency> |
| 42 | <dependency> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 43 | <groupId>${pom.groupId}</groupId> |
| 44 | <artifactId>org.apache.felix.ipojo.metadata</artifactId> |
Clement Escoffier | 6c6ae8d | 2007-09-25 13:27:49 +0000 | [diff] [blame] | 45 | <version>0.7.5-SNAPSHOT</version> |
Clement Escoffier | ace86c5 | 2007-06-24 17:44:53 +0000 | [diff] [blame] | 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>${pom.groupId}</groupId> |
| 49 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId> |
Clement Escoffier | 6c6ae8d | 2007-09-25 13:27:49 +0000 | [diff] [blame] | 50 | <version>0.7.5-SNAPSHOT</version> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 51 | </dependency> |
| 52 | </dependencies> |
| 53 | <build> |
| 54 | <plugins> |
| 55 | <plugin> |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 56 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 57 | <artifactId>maven-bundle-plugin</artifactId> |
Carsten Ziegeler | 78bcc77 | 2008-01-22 07:41:16 +0000 | [diff] [blame] | 58 | <version>1.2.0</version> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 59 | <extensions>true</extensions> |
| 60 | <configuration> |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 61 | <instructions> |
| 62 | <Bundle-Name>iPOJO</Bundle-Name> |
| 63 | <Bundle-Vendor>Clement ESCOFFIER</Bundle-Vendor> |
| 64 | <Bundle-Description> iPOJO </Bundle-Description> |
Clement Escoffier | 2e35112 | 2007-07-02 11:36:35 +0000 | [diff] [blame] | 65 | <Bundle-Activator>org.apache.felix.ipojo.Extender</Bundle-Activator> |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 66 | <Import-Package> |
Richard S. Hall | 0b8ba0f | 2007-05-18 15:13:47 +0000 | [diff] [blame] | 67 | org.osgi.framework, |
| 68 | org.osgi.service.cm, |
Clement Escoffier | b28f53d | 2007-09-20 07:50:53 +0000 | [diff] [blame] | 69 | org.osgi.service.log, |
| 70 | !org.objectweb.asm* |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 71 | </Import-Package> |
| 72 | <Private-Package> |
Clement Escoffier | ace86c5 | 2007-06-24 17:44:53 +0000 | [diff] [blame] | 73 | org.apache.felix.ipojo.manipulation, |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 74 | org.apache.felix.ipojo.composite.architecture, |
| 75 | org.apache.felix.ipojo.composite.service*, |
Richard S. Hall | 0b8ba0f | 2007-05-18 15:13:47 +0000 | [diff] [blame] | 76 | org.apache.felix.ipojo.composite.instance, |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 77 | org.apache.felix.ipojo.handlers.architecture, |
| 78 | org.apache.felix.ipojo.handlers.configuration, |
| 79 | org.apache.felix.ipojo.handlers.dependency.nullable, |
| 80 | org.apache.felix.ipojo.handlers.lifecycle.callback, |
Clement Escoffier | 3d5ee8e | 2007-08-17 07:53:40 +0000 | [diff] [blame] | 81 | org.apache.felix.ipojo.handlers.lifecycle.controller, |
Clement Escoffier | b28f53d | 2007-09-20 07:50:53 +0000 | [diff] [blame] | 82 | org.objectweb.asm*;-split-package:=merge-first |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 83 | </Private-Package> |
| 84 | <Export-Package> |
Clement Escoffier | 6c6ae8d | 2007-09-25 13:27:49 +0000 | [diff] [blame] | 85 | org.apache.felix.ipojo; version="0.7.5", |
| 86 | org.apache.felix.ipojo.metadata; version="0.7.5", |
| 87 | org.apache.felix.ipojo.architecture; version="0.7.5", |
| 88 | org.apache.felix.ipojo.parser; version="0.7.5", |
| 89 | org.apache.felix.ipojo.util; version="0.7.5", |
| 90 | org.apache.felix.ipojo.handlers.dependency; version="0.7.5", |
| 91 | org.apache.felix.ipojo.handlers.providedservice; version="0.7.5", |
| 92 | org.apache.felix.ipojo.composite; version="0.7.5", |
Richard S. Hall | 0b8ba0f | 2007-05-18 15:13:47 +0000 | [diff] [blame] | 93 | org.osgi.service.cm, |
| 94 | org.osgi.service.log |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 95 | </Export-Package> |
Clement Escoffier | 6c6ae8d | 2007-09-25 13:27:49 +0000 | [diff] [blame] | 96 | <_donotcopy>(CVS|.svn|.+.bak|~.+|metadata.xml)</_donotcopy> |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 97 | </instructions> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 98 | </configuration> |
| 99 | </plugin> |
Clement Escoffier | 6c6ae8d | 2007-09-25 13:27:49 +0000 | [diff] [blame] | 100 | <plugin> |
| 101 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 1bcd6c3 | 2007-09-26 09:00:29 +0000 | [diff] [blame] | 102 | <artifactId>maven-ipojo-plugin</artifactId> |
Clement Escoffier | 6c6ae8d | 2007-09-25 13:27:49 +0000 | [diff] [blame] | 103 | <version>${pom.version}</version> |
| 104 | <executions> |
| 105 | <execution> |
| 106 | <goals> |
| 107 | <goal>ipojo-bundle</goal> |
| 108 | </goals> |
| 109 | <configuration> |
| 110 | <metadata>metadata.xml</metadata> |
Clement Escoffier | 97f4814 | 2007-10-19 10:41:11 +0000 | [diff] [blame] | 111 | <ignoreAnnotations>true</ignoreAnnotations> |
Clement Escoffier | 6c6ae8d | 2007-09-25 13:27:49 +0000 | [diff] [blame] | 112 | </configuration> |
| 113 | </execution> |
| 114 | </executions> |
| 115 | </plugin> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 116 | </plugins> |
| 117 | </build> |
| 118 | </project> |