Guillaume Sauthier | d07629c | 2014-03-10 14:54:55 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | |
| 3 | <!-- |
| 4 | Licensed to the Apache Software Foundation (ASF) under one |
| 5 | or more contributor license agreements. See the NOTICE file |
| 6 | distributed with this work for additional information |
| 7 | regarding copyright ownership. The ASF licenses this file |
| 8 | to you under the Apache License, Version 2.0 (the |
| 9 | "License"); you may not use this file except in compliance |
| 10 | with the License. You may obtain a copy of the License at |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | Unless required by applicable law or agreed to in writing, |
| 15 | software distributed under the License is distributed on an |
| 16 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 17 | KIND, either express or implied. See the License for the |
| 18 | specific language governing permissions and limitations |
| 19 | under the License. |
| 20 | --> |
| 21 | <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"> |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <parent> |
| 24 | <groupId>org.apache.felix</groupId> |
| 25 | <artifactId>felix-parent</artifactId> |
| 26 | <version>2.1</version> |
| 27 | <relativePath>../../../pom/pom.xml</relativePath> |
| 28 | </parent> |
| 29 | |
| 30 | <artifactId>ipojo-manipulator-bom</artifactId> |
Clement Escoffier | 4348e39 | 2014-03-11 14:57:22 +0000 | [diff] [blame] | 31 | <version>1.11.3-SNAPSHOT</version> |
Guillaume Sauthier | d07629c | 2014-03-10 14:54:55 +0000 | [diff] [blame] | 32 | <name>Apache Felix iPOJO Manipulator BOM</name> |
| 33 | <packaging>pom</packaging> |
| 34 | |
| 35 | <properties> |
| 36 | <asm.version>3.3.1</asm.version> |
| 37 | <metadata.version>1.6.0</metadata.version> |
| 38 | </properties> |
| 39 | |
| 40 | <dependencyManagement> |
| 41 | <dependencies> |
| 42 | <dependency> |
| 43 | <groupId>org.apache.felix</groupId> |
| 44 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.apache.felix</groupId> |
| 49 | <artifactId>org.apache.felix.ipojo.annotations</artifactId> |
| 50 | <version>${project.version}</version> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>asm</groupId> |
| 54 | <artifactId>asm-all</artifactId> |
| 55 | <version>${asm.version}</version> |
| 56 | <exclusions> |
| 57 | <exclusion> |
| 58 | <groupId>asm</groupId> |
| 59 | <artifactId>asm-tree</artifactId> |
| 60 | </exclusion> |
| 61 | </exclusions> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.apache.felix</groupId> |
| 65 | <artifactId>org.apache.felix.ipojo.metadata</artifactId> |
| 66 | <version>${metadata.version}</version> |
| 67 | </dependency> |
| 68 | </dependencies> |
| 69 | </dependencyManagement> |
Guillaume Sauthier | d07629c | 2014-03-10 14:54:55 +0000 | [diff] [blame] | 70 | </project> |