blob: cc68e8fd1bbe239f10f436d27a3d3e370e6f1379 [file] [log] [blame]
Clement Escoffier3061b4b2011-12-03 09:36:25 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Clement Escoffiered4ca022013-03-13 15:27:20 +00003 ~ 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 Escoffier0ed54202011-12-06 15:10:09 +000020<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 Escoffier3061b4b2011-12-03 09:36:25 +000021 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.apache.felix</groupId>
24 <artifactId>felix-parent</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000025 <version>2.1</version>
Clement Escoffier3061b4b2011-12-03 09:36:25 +000026 <relativePath>../../../pom/pom.xml</relativePath>
27 </parent>
28
29 <artifactId>bnd-ipojo-plugin</artifactId>
Clement Escoffier7a899482013-05-15 13:21:30 +000030 <version>1.10.1-SNAPSHOT</version>
Clement Escoffier3061b4b2011-12-03 09:36:25 +000031 <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 Escoffier7a899482013-05-15 13:21:30 +000043 <version>1.10.1-SNAPSHOT</version>
Clement Escoffier3061b4b2011-12-03 09:36:25 +000044 </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>
Clement Escoffiered4ca022013-03-13 15:27:20 +000068
69 <plugin>
70 <groupId>org.apache.rat</groupId>
71 <artifactId>apache-rat-plugin</artifactId>
72 <executions>
73 <execution>
74 <phase>verify</phase>
75 <goals>
76 <goal>check</goal>
77 </goals>
78 </execution>
79 </executions>
80 <configuration>
81 <!-- check src only (except remote resources additions) -->
82 <includes>
83 <include>src/**</include>
84 </includes>
85 <excludes>
86 <exclude>src/main/appended-resources/**</exclude>
87 <exclude>**/*.MF</exclude>
88 </excludes>
89 </configuration>
90 </plugin>
Clement Escoffier3061b4b2011-12-03 09:36:25 +000091 </plugins>
92 </build>
Clement Escoffier3061b4b2011-12-03 09:36:25 +000093</project>