blob: e5606af679414484ed258c48568ec4c7b2e90641 [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">
Guillaume Sauthierbe546d82014-03-13 11:12:08 +000021 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.apache.felix</groupId>
24 <artifactId>felix-parent</artifactId>
25 <version>2.1</version>
26 <relativePath>../../../pom/pom.xml</relativePath>
27 </parent>
Clement Escoffier3061b4b2011-12-03 09:36:25 +000028
Guillaume Sauthierbe546d82014-03-13 11:12:08 +000029 <artifactId>bnd-ipojo-plugin</artifactId>
30 <version>1.11.3-SNAPSHOT</version>
31 <name>Apache Felix iPOJO Bnd Plugin</name>
Clement Escoffier3061b4b2011-12-03 09:36:25 +000032
Guillaume Sauthierbe546d82014-03-13 11:12:08 +000033 <dependencies>
34 <dependency>
35 <groupId>biz.aQute.bnd</groupId>
36 <artifactId>bndlib</artifactId>
37 <version>2.1.0</version>
38 <scope>provided</scope>
39 </dependency>
40 <dependency>
41 <groupId>org.apache.felix</groupId>
42 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
43 <version>${project.version}</version>
44 </dependency>
45 <dependency>
46 <groupId>org.apache.felix</groupId>
47 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
48 <version>${project.version}</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>
Clement Escoffier3061b4b2011-12-03 09:36:25 +000057
Guillaume Sauthierbe546d82014-03-13 11:12:08 +000058 <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
Guillaume Sauthierbe546d82014-03-13 11:12:08 +000069 <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>
91 </plugins>
92 </build>
Clement Escoffier3061b4b2011-12-03 09:36:25 +000093</project>