Clement Escoffier | 6e6565d | 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 | b8fe137 | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
Clement Escoffier | 6dc5996 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 21 | <parent> |
| 22 | <groupId>org.apache.felix</groupId> |
| 23 | <artifactId>felix</artifactId> |
| 24 | <version>1.0.2</version> |
| 25 | <relativePath>../../pom/pom.xml</relativePath> |
| 26 | </parent> |
| 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <packaging>bundle</packaging> |
| 29 | <name>Apache Felix iPOJO White Board Pattern Handler</name> |
Clement Escoffier | b8fe137 | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 30 | <artifactId> org.apache.felix.ipojo.handler.whiteboard </artifactId> |
Clement Escoffier | 6dc5996 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 31 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 818e692 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 32 | <version>1.1.0-SNAPSHOT</version> |
Clement Escoffier | 6dc5996 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>org.apache.felix</groupId> |
| 36 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | 818e692 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 37 | <version>1.1.0-SNAPSHOT</version> |
Clement Escoffier | 6dc5996 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 6dc5996 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 41 | <artifactId>org.osgi.core</artifactId> |
Clement Escoffier | b8fe137 | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 42 | <version>1.0.1</version> |
Clement Escoffier | 6dc5996 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 43 | </dependency> |
Clement Escoffier | 6dc5996 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 44 | </dependencies> |
Clement Escoffier | 6dc5996 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 45 | <build> |
| 46 | <plugins> |
| 47 | <plugin> |
| 48 | <groupId>org.apache.felix</groupId> |
| 49 | <artifactId>maven-bundle-plugin</artifactId> |
| 50 | <extensions>true</extensions> |
| 51 | <configuration> |
| 52 | <instructions> |
| 53 | <Bundle-Name>${pom.name}</Bundle-Name> |
Clement Escoffier | 23e4adf | 2008-12-10 12:29:41 +0000 | [diff] [blame] | 54 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
Clement Escoffier | b8fe137 | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 55 | <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor> |
| 56 | <Bundle-Description> iPOJO White-Board Pattern Handler |
Clement Escoffier | 6dc5996 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 57 | </Bundle-Description> |
| 58 | <Bundle-DocURL> |
Clement Escoffier | b8fe137 | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 59 | http://felix.apache.org/site/white-board-pattern-handler.html |
Clement Escoffier | 6dc5996 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 60 | </Bundle-DocURL> |
Clement Escoffier | b8fe137 | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 61 | <Private-Package> org.apache.felix.ipojo.handler.wbp |
Clement Escoffier | 6dc5996 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 62 | </Private-Package> |
| 63 | <Bundle-Name>${pom.name}</Bundle-Name> |
Clement Escoffier | b8fe137 | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 64 | <Bundle-SymbolicName> ipojo.event.admin.handler.wbp |
Clement Escoffier | 6dc5996 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 65 | </Bundle-SymbolicName> |
Clement Escoffier | b8fe137 | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 66 | <Include-Resource> META-INF/LICENCE=LICENSE, |
| 67 | META-INF/NOTICE=NOTICE </Include-Resource> |
Clement Escoffier | 6dc5996 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 68 | </instructions> |
| 69 | </configuration> |
| 70 | </plugin> |
| 71 | <plugin> |
| 72 | <groupId>org.apache.felix</groupId> |
| 73 | <artifactId>maven-ipojo-plugin</artifactId> |
Clement Escoffier | 818e692 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 74 | <version>1.1.0-SNAPSHOT</version> |
Clement Escoffier | 6dc5996 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 75 | <executions> |
| 76 | <execution> |
| 77 | <goals> |
| 78 | <goal>ipojo-bundle</goal> |
| 79 | </goals> |
| 80 | <configuration> |
| 81 | <metadata>metadata.xml</metadata> |
| 82 | </configuration> |
| 83 | </execution> |
| 84 | </executions> |
| 85 | </plugin> |
Clement Escoffier | b8fe137 | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 86 | <plugin> |
| 87 | <groupId>org.codehaus.mojo</groupId> |
| 88 | <artifactId>rat-maven-plugin</artifactId> |
| 89 | <configuration> |
| 90 | <excludeSubProjects>false</excludeSubProjects> |
| 91 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 92 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 93 | <excludes> |
| 94 | <param>doc/**/*</param> |
| 95 | <param>maven-eclipse.xml</param> |
| 96 | <param>.checkstyle</param> |
| 97 | <param>.externalToolBuilders/*</param> |
| 98 | <param>LICENSE.asm</param> |
| 99 | </excludes> |
| 100 | </configuration> |
| 101 | </plugin> |
| 102 | <plugin> |
| 103 | <groupId>org.apache.maven.plugins</groupId> |
| 104 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 105 | <configuration> |
| 106 | <enableRulesSummary>false</enableRulesSummary> |
| 107 | <violationSeverity>warning</violationSeverity> |
| 108 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 109 | </configuration> |
| 110 | </plugin> |
Clement Escoffier | 6dc5996 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 111 | </plugins> |
| 112 | </build> |
Clement Escoffier | 6dc5996 | 2008-10-14 11:58:21 +0000 | [diff] [blame] | 113 | </project> |