blob: 0473175cf7d0411661f89cea45dd83da83ff5fe8 [file] [log] [blame]
Clement Escoffier3b375c22011-08-18 11:33:56 +00001<?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 Escoffierbcc0fbd2011-11-30 16:53:38 +000020<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 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>1.2.1</version>
27 <relativePath>../../pom/pom.xml</relativePath>
28 </parent>
Clement Escoffier3b375c22011-08-18 11:33:56 +000029
Clement Escoffierbcc0fbd2011-11-30 16:53:38 +000030 <artifactId>bnd-ipojo-plugin</artifactId>
31 <version>1.0.0-SNAPSHOT</version>
Clement Escoffier3b375c22011-08-18 11:33:56 +000032 <name>Apache Felix iPOJO Bnd Plugin</name>
33
Clement Escoffierbcc0fbd2011-11-30 16:53:38 +000034 <dependencies>
35 <dependency>
36 <groupId>biz.aQute</groupId>
37 <artifactId>bndlib</artifactId>
38 <version>1.43.0</version>
39 <scope>provided</scope>
40 </dependency>
41 <dependency>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
44 <version>1.9.0-SNAPSHOT</version>
45 </dependency>
46 <dependency>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
49 <version>1.8.0</version>
50 </dependency>
51 <dependency>
52 <groupId>org.mockito</groupId>
53 <artifactId>mockito-all</artifactId>
54 <version>1.8.5</version>
55 <scope>test</scope>
56 </dependency>
57 </dependencies>
Clement Escoffier3b375c22011-08-18 11:33:56 +000058
Clement Escoffierbcc0fbd2011-11-30 16:53:38 +000059 <build>
60 <plugins>
61 <plugin>
62 <groupId>org.apache.maven.plugins</groupId>
63 <artifactId>maven-compiler-plugin</artifactId>
64 <configuration>
65 <source>1.5</source>
66 <target>1.5</target>
67 </configuration>
68 </plugin>
69 </plugins>
70 </build>
Clement Escoffier3b375c22011-08-18 11:33:56 +000071
Clement Escoffier3b375c22011-08-18 11:33:56 +000072</project>