Clement Escoffier | 3061b4b | 2011-12-03 09:36:25 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 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 Escoffier | 0ed5420 | 2011-12-06 15:10:09 +0000 | [diff] [blame] | 20 | <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 Sauthier | be546d8 | 2014-03-13 11:12:08 +0000 | [diff] [blame] | 21 | <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 Escoffier | 3061b4b | 2011-12-03 09:36:25 +0000 | [diff] [blame] | 28 | |
Guillaume Sauthier | be546d8 | 2014-03-13 11:12:08 +0000 | [diff] [blame] | 29 | <artifactId>bnd-ipojo-plugin</artifactId> |
Clement Escoffier | c984df1 | 2014-05-12 11:13:53 +0000 | [diff] [blame] | 30 | <version>1.12.1-SNAPSHOT</version> |
Guillaume Sauthier | be546d8 | 2014-03-13 11:12:08 +0000 | [diff] [blame] | 31 | <name>Apache Felix iPOJO Bnd Plugin</name> |
Clement Escoffier | 3061b4b | 2011-12-03 09:36:25 +0000 | [diff] [blame] | 32 | |
Guillaume Sauthier | be546d8 | 2014-03-13 11:12:08 +0000 | [diff] [blame] | 33 | <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 Sauthier | be546d8 | 2014-03-13 11:12:08 +0000 | [diff] [blame] | 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.apache.felix</groupId> |
| 46 | <artifactId>org.apache.felix.ipojo.annotations</artifactId> |
Guillaume Sauthier | be546d8 | 2014-03-13 11:12:08 +0000 | [diff] [blame] | 47 | </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 Escoffier | 3061b4b | 2011-12-03 09:36:25 +0000 | [diff] [blame] | 55 | |
Guillaume Sauthier | 5dbe4dc | 2014-03-13 12:45:43 +0000 | [diff] [blame] | 56 | <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 Sauthier | be546d8 | 2014-03-13 11:12:08 +0000 | [diff] [blame] | 68 | <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 Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 78 | |
Guillaume Sauthier | be546d8 | 2014-03-13 11:12:08 +0000 | [diff] [blame] | 79 | <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 Escoffier | 3061b4b | 2011-12-03 09:36:25 +0000 | [diff] [blame] | 103 | </project> |