Clement Escoffier | ec471f5 | 2008-10-14 09:43:32 +0000 | [diff] [blame] | 1 | <!-- |
Clement Escoffier | 0630c6b | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 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 |
Clement Escoffier | c80b73d | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 9 | |
Clement Escoffier | 0630c6b | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 10 | http://www.apache.org/licenses/LICENSE-2.0 |
Clement Escoffier | c80b73d | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 11 | |
Clement Escoffier | 0630c6b | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 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. |
Clement Escoffier | ec471f5 | 2008-10-14 09:43:32 +0000 | [diff] [blame] | 18 | --> |
Clement Escoffier | 8764a90 | 2011-12-03 09:47:38 +0000 | [diff] [blame] | 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 21 | <parent> |
Clement Escoffier | c7875d2 | 2011-08-18 11:32:19 +0000 | [diff] [blame] | 22 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 8764a90 | 2011-12-03 09:47:38 +0000 | [diff] [blame] | 23 | <artifactId>felix-parent</artifactId> |
| 24 | <version>1.2.1</version> |
| 25 | <relativePath>../../pom/pom.xml</relativePath> |
| 26 | </parent> |
| 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <artifactId>org.apache.felix.ipojo.manipulator-project</artifactId> |
| 29 | <version>1.9.0-SNAPSHOT</version> |
| 30 | <name>Apache Felix iPOJO Manipulator Project</name> |
| 31 | <packaging>pom</packaging> |
Clement Escoffier | 5c0361e | 2010-12-23 13:20:45 +0000 | [diff] [blame] | 32 | |
Clement Escoffier | 8764a90 | 2011-12-03 09:47:38 +0000 | [diff] [blame] | 33 | <description> |
| 34 | The iPOJO Manipulator project contains the iPOJO packaging process and |
| 35 | several front-ends for Ant, Maven and BND. |
| 36 | </description> |
Clement Escoffier | 5c0361e | 2010-12-23 13:20:45 +0000 | [diff] [blame] | 37 | |
Clement Escoffier | 8764a90 | 2011-12-03 09:47:38 +0000 | [diff] [blame] | 38 | <modules> |
| 39 | <module>manipulator</module> |
| 40 | <module>ipojo-ant-task</module> |
| 41 | <module>maven-ipojo-plugin</module> |
| 42 | <module>bnd-ipojo-plugin</module> |
| 43 | </modules> |
Clement Escoffier | 8563afc | 2010-08-29 09:05:18 +0000 | [diff] [blame] | 44 | |
Clement Escoffier | 8764a90 | 2011-12-03 09:47:38 +0000 | [diff] [blame] | 45 | <build> |
| 46 | <resources> |
| 47 | <resource> |
| 48 | <directory>src/main/resources</directory> |
| 49 | </resource> |
| 50 | <resource> |
| 51 | <directory>.</directory> |
| 52 | <targetPath>META-INF</targetPath> |
| 53 | <includes> |
| 54 | <include>LICENSE*</include> |
| 55 | <include>NOTICE*</include> |
| 56 | <include>DEPENDENCIES*</include> |
| 57 | </includes> |
| 58 | </resource> |
| 59 | </resources> |
| 60 | <plugins> |
| 61 | <plugin> |
| 62 | <artifactId>maven-assembly-plugin</artifactId> |
| 63 | <version>2.2-beta-1</version> |
| 64 | <executions> |
| 65 | <execution> |
| 66 | <id>make-assembly</id> |
| 67 | <phase>package</phase> |
| 68 | <goals> |
| 69 | <goal>single</goal> |
| 70 | </goals> |
| 71 | <configuration> |
| 72 | <descriptorRefs> |
| 73 | <descriptorRef>project</descriptorRef> |
| 74 | </descriptorRefs> |
| 75 | <attach>false</attach> |
| 76 | </configuration> |
| 77 | </execution> |
| 78 | </executions> |
| 79 | </plugin> |
| 80 | </plugins> |
| 81 | </build> |
| 82 | |
Clement Escoffier | 0630c6b | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 83 | </project> |