Clement Escoffier | 151cbb0 | 2008-10-14 11:59:25 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | Licensed to the Apache Software Foundation (ASF) under one |
| 3 | or more contributor license agreements. See the NOTICE file |
| 4 | distributed with this work for additional information |
| 5 | regarding copyright ownership. The ASF licenses this file |
| 6 | to you under the Apache License, Version 2.0 (the |
| 7 | "License"); you may not use this file except in compliance |
| 8 | with the License. You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, |
| 13 | software distributed under the License is distributed on an |
| 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | KIND, either express or implied. See the License for the |
| 16 | specific language governing permissions and limitations |
| 17 | under the License. |
| 18 | --> |
Clement Escoffier | 947279f | 2009-01-28 10:56:08 +0000 | [diff] [blame] | 19 | <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/maven-v4_0_0.xsd"> |
Clement Escoffier | 9b47a30 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix</artifactId> |
| 23 | <version>1.0.2</version> |
| 24 | <relativePath>../../pom/pom.xml</relativePath> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
| 28 | <name>Apache Felix iPOJO White Board Pattern Handler</name> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 29 | <artifactId> org.apache.felix.ipojo.handler.whiteboard </artifactId> |
Clement Escoffier | 9b47a30 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 30 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 3eeae0b | 2009-01-28 10:56:33 +0000 | [diff] [blame] | 31 | <version>1.3.0-SNAPSHOT</version> |
Clement Escoffier | 9b47a30 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>org.apache.felix</groupId> |
| 35 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | 8f27ebe | 2009-01-28 15:45:23 +0000 | [diff] [blame] | 36 | <version>1.3.0-SNAPSHOT</version> |
Clement Escoffier | 9b47a30 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 9b47a30 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 40 | <artifactId>org.osgi.core</artifactId> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 41 | <version>1.0.1</version> |
Clement Escoffier | 9b47a30 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 42 | </dependency> |
Clement Escoffier | 9b47a30 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 43 | </dependencies> |
Clement Escoffier | 9b47a30 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 44 | <build> |
| 45 | <plugins> |
| 46 | <plugin> |
| 47 | <groupId>org.apache.felix</groupId> |
| 48 | <artifactId>maven-bundle-plugin</artifactId> |
| 49 | <extensions>true</extensions> |
| 50 | <configuration> |
| 51 | <instructions> |
| 52 | <Bundle-Name>${pom.name}</Bundle-Name> |
Clement Escoffier | 8d88835 | 2008-12-10 12:29:41 +0000 | [diff] [blame] | 53 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 54 | <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor> |
| 55 | <Bundle-Description> iPOJO White-Board Pattern Handler |
Clement Escoffier | 9b47a30 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 56 | </Bundle-Description> |
| 57 | <Bundle-DocURL> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 58 | http://felix.apache.org/site/white-board-pattern-handler.html |
Clement Escoffier | 9b47a30 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 59 | </Bundle-DocURL> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 60 | <Private-Package> org.apache.felix.ipojo.handler.wbp |
Clement Escoffier | 9b47a30 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 61 | </Private-Package> |
| 62 | <Bundle-Name>${pom.name}</Bundle-Name> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 63 | <Include-Resource> META-INF/LICENCE=LICENSE, |
| 64 | META-INF/NOTICE=NOTICE </Include-Resource> |
Clement Escoffier | 9b47a30 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 65 | </instructions> |
| 66 | </configuration> |
| 67 | </plugin> |
| 68 | <plugin> |
| 69 | <groupId>org.apache.felix</groupId> |
| 70 | <artifactId>maven-ipojo-plugin</artifactId> |
Clement Escoffier | 8f27ebe | 2009-01-28 15:45:23 +0000 | [diff] [blame] | 71 | <version>1.3.0-SNAPSHOT</version> |
Clement Escoffier | 9b47a30 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 72 | <executions> |
| 73 | <execution> |
| 74 | <goals> |
| 75 | <goal>ipojo-bundle</goal> |
| 76 | </goals> |
| 77 | <configuration> |
| 78 | <metadata>metadata.xml</metadata> |
| 79 | </configuration> |
| 80 | </execution> |
| 81 | </executions> |
| 82 | </plugin> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 83 | <plugin> |
| 84 | <groupId>org.codehaus.mojo</groupId> |
| 85 | <artifactId>rat-maven-plugin</artifactId> |
| 86 | <configuration> |
| 87 | <excludeSubProjects>false</excludeSubProjects> |
| 88 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 89 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 90 | <excludes> |
| 91 | <param>doc/**/*</param> |
| 92 | <param>maven-eclipse.xml</param> |
| 93 | <param>.checkstyle</param> |
| 94 | <param>.externalToolBuilders/*</param> |
| 95 | <param>LICENSE.asm</param> |
| 96 | </excludes> |
| 97 | </configuration> |
| 98 | </plugin> |
| 99 | <plugin> |
| 100 | <groupId>org.apache.maven.plugins</groupId> |
| 101 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 102 | <configuration> |
| 103 | <enableRulesSummary>false</enableRulesSummary> |
| 104 | <violationSeverity>warning</violationSeverity> |
| 105 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 106 | </configuration> |
| 107 | </plugin> |
Clement Escoffier | 9b47a30 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 108 | </plugins> |
| 109 | </build> |
Clement Escoffier | 9b47a30 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 110 | </project> |