Clement Escoffier | eb41a15 | 2008-05-18 22:42:39 +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 | -->
|
Clement Escoffier | 156112b | 2008-05-18 22:03:26 +0000 | [diff] [blame] | 19 | <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/xsd/maven-4.0.0.xsd">
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 20 | <parent>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 21 | <groupId>org.apache.felix</groupId>
|
Clement Escoffier | 7d116ff | 2008-03-29 15:04:02 +0000 | [diff] [blame] | 22 | <artifactId>felix</artifactId>
|
| 23 | <version>1.0.2</version>
|
| 24 | <relativePath>../../pom/pom.xml</relativePath>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 25 | </parent>
|
| 26 | <modelVersion>4.0.0</modelVersion>
|
| 27 | <packaging>bundle</packaging>
|
| 28 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
|
Clement Escoffier | 7d116ff | 2008-03-29 15:04:02 +0000 | [diff] [blame] | 29 | <groupId>org.apache.felix</groupId>
|
Clement Escoffier | eb6553a | 2008-05-18 22:47:58 +0000 | [diff] [blame] | 30 | <version>0.9.0-SNAPSHOT</version>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 31 | <name>Apache Felix iPOJO Manipulator</name>
|
| 32 |
|
| 33 | <dependencies>
|
| 34 | <dependency>
|
| 35 | <groupId>asm</groupId>
|
| 36 | <artifactId>asm-all</artifactId>
|
| 37 | <version>3.0</version>
|
| 38 | <exclusions>
|
| 39 | <exclusion>
|
| 40 | <groupId>asm</groupId>
|
| 41 | <artifactId>asm-tree</artifactId>
|
| 42 | </exclusion>
|
| 43 | </exclusions>
|
| 44 | </dependency>
|
| 45 | <dependency>
|
Clement Escoffier | 4a12e33 | 2008-04-07 13:29:34 +0000 | [diff] [blame] | 46 | <groupId>org.apache.felix</groupId>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 47 | <artifactId>org.apache.felix.ipojo.metadata</artifactId>
|
Clement Escoffier | 2ca814e | 2008-05-19 01:47:07 +0000 | [diff] [blame] | 48 | <version>0.9.0-SNAPSHOT</version>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 49 | </dependency>
|
| 50 | </dependencies>
|
| 51 | <build>
|
| 52 | <plugins>
|
| 53 | <plugin>
|
| 54 | <groupId>org.apache.felix</groupId>
|
| 55 | <artifactId>maven-bundle-plugin</artifactId>
|
| 56 | <version>1.4.0</version>
|
| 57 | <extensions>true</extensions>
|
| 58 | <configuration>
|
| 59 | <instructions>
|
| 60 | <Bundle-Name>iPOJO Manipulator</Bundle-Name>
|
Clement Escoffier | 9d7a005 | 2008-05-05 18:30:18 +0000 | [diff] [blame] | 61 | <Bundle-Vendor>
|
| 62 | The Apache Software Foundation
|
| 63 | </Bundle-Vendor>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 64 | <Bundle-Description>
|
| 65 | iPOJO Manipulator
|
| 66 | </Bundle-Description>
|
| 67 | <Export-Package>
|
| 68 | org.apache.felix.ipojo.manipulator
|
| 69 | </Export-Package>
|
| 70 | <Private-Package>
|
| 71 | org.apache.felix.ipojo.manipulation,
|
| 72 | org.apache.felix.ipojo.manipulation.annotations,
|
| 73 | org.apache.felix.ipojo.xml.parser,
|
| 74 | org.objectweb.asm, org.objectweb.asm.commons
|
| 75 | </Private-Package>
|
Clement Escoffier | 9d7a005 | 2008-05-05 18:30:18 +0000 | [diff] [blame] | 76 | <Include-Resource>
|
| 77 | META-INF/LICENCE=LICENSE,
|
| 78 | META-INF/NOTICE=NOTICE
|
| 79 | </Include-Resource>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 80 | </instructions>
|
| 81 | </configuration>
|
| 82 | </plugin>
|
| 83 | </plugins>
|
| 84 | </build>
|
Clement Escoffier | 156112b | 2008-05-18 22:03:26 +0000 | [diff] [blame] | 85 | </project> |