Clement Escoffier | 3061b4b | 2011-12-03 09:36:25 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | Licensed to the Apache Software Foundation (ASF) under one |
| 4 | or more contributor license agreements. See the NOTICE file |
| 5 | distributed with this work for additional information |
| 6 | regarding copyright ownership. The ASF licenses this file |
| 7 | to you under the Apache License, Version 2.0 (the |
| 8 | "License"); you may not use this file except in compliance |
| 9 | with the License. You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, |
| 14 | software distributed under the License is distributed on an |
| 15 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | KIND, either express or implied. See the License for the |
| 17 | specific language governing permissions and limitations |
| 18 | under the License. |
| 19 | --> |
Clement Escoffier | 0ed5420 | 2011-12-06 15:10:09 +0000 | [diff] [blame] | 20 | <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 | 3061b4b | 2011-12-03 09:36:25 +0000 | [diff] [blame] | 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <groupId>org.apache.felix</groupId> |
| 24 | <artifactId>felix-parent</artifactId> |
| 25 | <version>1.2.1</version> |
| 26 | <relativePath>../../../pom/pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <artifactId>bnd-ipojo-plugin</artifactId> |
Clement Escoffier | cce53c0 | 2011-12-06 15:42:53 +0000 | [diff] [blame] | 30 | <version>1.9.0-SNAPSHOT</version> |
Clement Escoffier | 3061b4b | 2011-12-03 09:36:25 +0000 | [diff] [blame] | 31 | <name>Apache Felix iPOJO Bnd Plugin</name> |
| 32 | |
| 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>biz.aQute</groupId> |
| 36 | <artifactId>bndlib</artifactId> |
| 37 | <version>1.43.0</version> |
| 38 | <scope>provided</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.apache.felix</groupId> |
| 42 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId> |
Clement Escoffier | cce53c0 | 2011-12-06 15:42:53 +0000 | [diff] [blame] | 43 | <version>1.9.0-SNAPSHOT</version> |
Clement Escoffier | 3061b4b | 2011-12-03 09:36:25 +0000 | [diff] [blame] | 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.apache.felix</groupId> |
| 47 | <artifactId>org.apache.felix.ipojo.annotations</artifactId> |
| 48 | <version>1.8.0</version> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.mockito</groupId> |
| 52 | <artifactId>mockito-all</artifactId> |
| 53 | <version>1.8.5</version> |
| 54 | <scope>test</scope> |
| 55 | </dependency> |
| 56 | </dependencies> |
| 57 | |
| 58 | <build> |
| 59 | <plugins> |
| 60 | <plugin> |
| 61 | <groupId>org.apache.maven.plugins</groupId> |
| 62 | <artifactId>maven-compiler-plugin</artifactId> |
| 63 | <configuration> |
| 64 | <source>1.5</source> |
| 65 | <target>1.5</target> |
| 66 | </configuration> |
| 67 | </plugin> |
| 68 | </plugins> |
| 69 | </build> |
| 70 | |
Clement Escoffier | 195bb8f | 2011-12-06 15:04:44 +0000 | [diff] [blame] | 71 | <profiles> |
| 72 | <profile> |
| 73 | <id>release</id> |
| 74 | <build> |
| 75 | <plugins> |
| 76 | <plugin> |
| 77 | <groupId>org.apache.maven.plugins</groupId> |
| 78 | <artifactId>maven-javadoc-plugin</artifactId> |
| 79 | <executions> |
| 80 | <execution> |
| 81 | <id>attach-javadocs</id> |
| 82 | <goals> |
| 83 | <goal>jar</goal> |
| 84 | </goals> |
| 85 | </execution> |
| 86 | </executions> |
| 87 | </plugin> |
| 88 | </plugins> |
| 89 | </build> |
| 90 | </profile> |
| 91 | </profiles> |
Clement Escoffier | 3061b4b | 2011-12-03 09:36:25 +0000 | [diff] [blame] | 92 | </project> |