Clement Escoffier | a2450d7 | 2008-10-14 11:28:35 +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 | 01d3509 | 2009-01-28 10:48:04 +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 | 6fc482c | 2008-10-14 11:20:09 +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 Event Admin Handler</name> |
| 29 | <artifactId>org.apache.felix.ipojo.handler.eventadmin</artifactId> |
Clement Escoffier | 01d3509 | 2009-01-28 10:48:04 +0000 | [diff] [blame^] | 30 | <version>1.2.0</version> |
Clement Escoffier | 6fc482c | 2008-10-14 11:20:09 +0000 | [diff] [blame] | 31 | <dependencies> |
| 32 | <dependency> |
| 33 | <groupId>org.apache.felix</groupId> |
| 34 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | 6e0a82a | 2009-01-28 10:44:07 +0000 | [diff] [blame] | 35 | <version>1.2.0</version> |
Clement Escoffier | 6fc482c | 2008-10-14 11:20:09 +0000 | [diff] [blame] | 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 6fc482c | 2008-10-14 11:20:09 +0000 | [diff] [blame] | 39 | <artifactId>org.osgi.core</artifactId> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 40 | <version>1.0.1</version> |
Clement Escoffier | 6fc482c | 2008-10-14 11:20:09 +0000 | [diff] [blame] | 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.apache.felix</groupId> |
| 44 | <artifactId>org.osgi.compendium</artifactId> |
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 45 | <version>1.2.0</version> |
Clement Escoffier | 6fc482c | 2008-10-14 11:20:09 +0000 | [diff] [blame] | 46 | </dependency> |
| 47 | </dependencies> |
Clement Escoffier | 6fc482c | 2008-10-14 11:20:09 +0000 | [diff] [blame] | 48 | <build> |
| 49 | <plugins> |
| 50 | <plugin> |
| 51 | <groupId>org.apache.felix</groupId> |
| 52 | <artifactId>maven-bundle-plugin</artifactId> |
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 53 | <version>1.4.3</version> |
Clement Escoffier | 6fc482c | 2008-10-14 11:20:09 +0000 | [diff] [blame] | 54 | <extensions>true</extensions> |
| 55 | <configuration> |
| 56 | <instructions> |
| 57 | <Export-Package>org.apache.felix.ipojo.handlers.event.*; |
Clement Escoffier | 6e0a82a | 2009-01-28 10:44:07 +0000 | [diff] [blame] | 58 | version="1.2.0"</Export-Package> |
Clement Escoffier | 6fc482c | 2008-10-14 11:20:09 +0000 | [diff] [blame] | 59 | <Bundle-Name>${pom.name}</Bundle-Name> |
Clement Escoffier | 8d88835 | 2008-12-10 12:29:41 +0000 | [diff] [blame] | 60 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 61 | <Bundle-Description> iPOJO Event Admin Handlers |
Clement Escoffier | 6fc482c | 2008-10-14 11:20:09 +0000 | [diff] [blame] | 62 | </Bundle-Description> |
| 63 | <Bundle-DocURL> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 64 | http://felix.apache.org/site/event-admin-handlers.html |
Clement Escoffier | 6fc482c | 2008-10-14 11:20:09 +0000 | [diff] [blame] | 65 | </Bundle-DocURL> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 66 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
| 67 | <Include-Resource> META-INF/LICENCE=LICENSE, |
| 68 | META-INF/NOTICE=NOTICE </Include-Resource> |
Clement Escoffier | 6fc482c | 2008-10-14 11:20:09 +0000 | [diff] [blame] | 69 | </instructions> |
| 70 | </configuration> |
| 71 | </plugin> |
| 72 | <plugin> |
| 73 | <groupId>org.apache.felix</groupId> |
| 74 | <artifactId>maven-ipojo-plugin</artifactId> |
Clement Escoffier | 6e0a82a | 2009-01-28 10:44:07 +0000 | [diff] [blame] | 75 | <version>1.2.0</version> |
Clement Escoffier | 6fc482c | 2008-10-14 11:20:09 +0000 | [diff] [blame] | 76 | <executions> |
| 77 | <execution> |
| 78 | <goals> |
| 79 | <goal>ipojo-bundle</goal> |
| 80 | </goals> |
| 81 | <configuration> |
| 82 | <metadata>metadata.xml</metadata> |
| 83 | </configuration> |
| 84 | </execution> |
| 85 | </executions> |
| 86 | </plugin> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 87 | <plugin> |
| 88 | <groupId>org.codehaus.mojo</groupId> |
| 89 | <artifactId>rat-maven-plugin</artifactId> |
| 90 | <configuration> |
| 91 | <excludeSubProjects>false</excludeSubProjects> |
| 92 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 93 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 94 | <excludes> |
| 95 | <param>doc/**/*</param> |
| 96 | <param>maven-eclipse.xml</param> |
| 97 | <param>.checkstyle</param> |
| 98 | <param>.externalToolBuilders/*</param> |
| 99 | <param>LICENSE.asm</param> |
| 100 | </excludes> |
| 101 | </configuration> |
| 102 | </plugin> |
| 103 | <plugin> |
| 104 | <groupId>org.apache.maven.plugins</groupId> |
| 105 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 106 | <configuration> |
| 107 | <enableRulesSummary>false</enableRulesSummary> |
| 108 | <violationSeverity>warning</violationSeverity> |
| 109 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 110 | </configuration> |
| 111 | </plugin> |
Clement Escoffier | 6fc482c | 2008-10-14 11:20:09 +0000 | [diff] [blame] | 112 | </plugins> |
| 113 | </build> |
Clement Escoffier | 01d3509 | 2009-01-28 10:48:04 +0000 | [diff] [blame^] | 114 | |
| 115 | <scm> |
| 116 | <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.eventadmin-1.2.0</connection> |
| 117 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.eventadmin-1.2.0</developerConnection> |
| 118 | <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.eventadmin-1.2.0</url> |
| 119 | </scm> |
Clement Escoffier | 6fc482c | 2008-10-14 11:20:09 +0000 | [diff] [blame] | 120 | </project> |