blob: 6d52a83802b9966d7d1fa909d17b54da3beb64f3 [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>
Clement Escoffier49855c62014-12-16 13:14:13 +000030 <version>1.12.1</version>
Guillaume Sauthierbe546d82014-03-13 11:12:08 +000031 <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>
Guillaume Sauthierbe546d82014-03-13 11:12:08 +000043 </dependency>
44 <dependency>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
Guillaume Sauthierbe546d82014-03-13 11:12:08 +000047 </dependency>
48 <dependency>
49 <groupId>org.mockito</groupId>
50 <artifactId>mockito-all</artifactId>
51 <version>1.8.5</version>
52 <scope>test</scope>
53 </dependency>
54 </dependencies>
Clement Escoffier3061b4b2011-12-03 09:36:25 +000055
Guillaume Sauthier5dbe4dc2014-03-13 12:45:43 +000056 <dependencyManagement>
57 <dependencies>
58 <dependency>
59 <groupId>org.apache.felix</groupId>
60 <artifactId>ipojo-manipulator-bom</artifactId>
61 <version>${project.version}</version>
62 <type>pom</type>
63 <scope>import</scope>
64 </dependency>
65 </dependencies>
66 </dependencyManagement>
67
Guillaume Sauthierbe546d82014-03-13 11:12:08 +000068 <build>
69 <plugins>
70 <plugin>
71 <groupId>org.apache.maven.plugins</groupId>
72 <artifactId>maven-compiler-plugin</artifactId>
73 <configuration>
74 <source>1.5</source>
75 <target>1.5</target>
76 </configuration>
77 </plugin>
Clement Escoffiered4ca022013-03-13 15:27:20 +000078
Guillaume Sauthierbe546d82014-03-13 11:12:08 +000079 <plugin>
80 <groupId>org.apache.rat</groupId>
81 <artifactId>apache-rat-plugin</artifactId>
82 <executions>
83 <execution>
84 <phase>verify</phase>
85 <goals>
86 <goal>check</goal>
87 </goals>
88 </execution>
89 </executions>
90 <configuration>
91 <!-- check src only (except remote resources additions) -->
92 <includes>
93 <include>src/**</include>
94 </includes>
95 <excludes>
96 <exclude>src/main/appended-resources/**</exclude>
97 <exclude>**/*.MF</exclude>
98 </excludes>
99 </configuration>
100 </plugin>
101 </plugins>
102 </build>
Clement Escoffier49855c62014-12-16 13:14:13 +0000103
104 <scm>
105 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.manipulator-project-1.12.1/bnd-ipojo-plugin</connection>
106 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.manipulator-project-1.12.1/bnd-ipojo-plugin</developerConnection>
107 <url>http://svn.apache.org/viewvc/felix/releases/?root=Apache-SVN/org.apache.felix.ipojo.manipulator-project-1.12.1/bnd-ipojo-plugin</url>
108 </scm>
Clement Escoffier3061b4b2011-12-03 09:36:25 +0000109</project>