Clement Escoffier | 821ad05 | 2009-04-22 10:08:45 +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 | 7e59421 | 2009-07-21 18:55:02 +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 | de57c1a | 2009-07-17 08:10:38 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix-parent</artifactId> |
| 23 | <version>1.2.0</version> |
| 24 | <relativePath>../../pom/pom.xml</relativePath> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
| 28 | <artifactId>org.apache.felix.ipojo.online.manipulator</artifactId> |
Clement Escoffier | 569955f | 2009-07-21 18:55:19 +0000 | [diff] [blame] | 29 | <version>1.5.0-SNAPSHOT</version> |
Clement Escoffier | de57c1a | 2009-07-17 08:10:38 +0000 | [diff] [blame] | 30 | <name>Apache Felix iPOJO URL Handler</name> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 31 | |
| 32 | <description> |
| 33 | iPOJO online manipulator allowing install time manipulation of iPOJO bundle. |
| 34 | </description> |
| 35 | <url>http://felix.apache.org/site/apache-felix-ipojo-online-manipulator.html</url> |
| 36 | |
Clement Escoffier | de57c1a | 2009-07-17 08:10:38 +0000 | [diff] [blame] | 37 | <build> |
| 38 | <plugins> |
| 39 | <plugin> |
| 40 | <groupId>org.apache.felix</groupId> |
| 41 | <artifactId>maven-bundle-plugin</artifactId> |
| 42 | <version>1.4.3</version> |
| 43 | <extensions>true</extensions> |
| 44 | <configuration> |
| 45 | <instructions> |
| 46 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 47 | <Private-Package>org.apache.felix.ipojo.online.manipulator</Private-Package> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 48 | <Bundle-DocURL> |
| 49 | http://felix.apache.org/site/apache-felix-ipojo-online-manipulator.html |
| 50 | </Bundle-DocURL> |
Clement Escoffier | de57c1a | 2009-07-17 08:10:38 +0000 | [diff] [blame] | 51 | <Export-Package> org.apache.felix.ipojo.manipulator, |
| 52 | org.apache.felix.ipojo.xml.parser, |
| 53 | org.apache.felix.ipojo.manipulation, |
| 54 | org.apache.felix.ipojo.manipulation.annotations, |
| 55 | org.objectweb.asm.commons, org.objectweb.asm </Export-Package> |
| 56 | <Import-Package> !org.objectweb.asm.tree, !sun.io, org.osgi.framework;version=1.3, * |
| 57 | </Import-Package> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 58 | <Include-Resource> META-INF/LICENSE=LICENSE, |
| 59 | META-INF/LICENSE.asm=LICENSE.asm, |
| 60 | META-INF/NOTICE=NOTICE |
| 61 | </Include-Resource> |
Clement Escoffier | de57c1a | 2009-07-17 08:10:38 +0000 | [diff] [blame] | 62 | <!-- <Embed-Dependency>xercesImpl|xml-resolver</Embed-Dependency> --> |
| 63 | </instructions> |
| 64 | </configuration> |
| 65 | </plugin> |
| 66 | <plugin> |
| 67 | <groupId>org.apache.felix</groupId> |
| 68 | <artifactId>maven-ipojo-plugin</artifactId> |
Clement Escoffier | f344b95 | 2009-07-21 18:57:39 +0000 | [diff] [blame] | 69 | <version>${pom.version}</version> |
Clement Escoffier | de57c1a | 2009-07-17 08:10:38 +0000 | [diff] [blame] | 70 | <executions> |
| 71 | <execution> |
| 72 | <goals> |
| 73 | <goal>ipojo-bundle</goal> |
| 74 | </goals> |
| 75 | </execution> |
| 76 | </executions> |
| 77 | </plugin> |
| 78 | <plugin> |
| 79 | <groupId>org.codehaus.mojo</groupId> |
| 80 | <artifactId>rat-maven-plugin</artifactId> |
| 81 | <configuration> |
| 82 | <excludeSubProjects>false</excludeSubProjects> |
| 83 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 84 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 85 | <excludes> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 86 | <param>doc/**/*</param> |
Clement Escoffier | de57c1a | 2009-07-17 08:10:38 +0000 | [diff] [blame] | 87 | <param>maven-eclipse.xml</param> |
| 88 | <param>.checkstyle</param> |
| 89 | <param>.externalToolBuilders/*</param> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 90 | <param>LICENSE.asm</param> |
Clement Escoffier | de57c1a | 2009-07-17 08:10:38 +0000 | [diff] [blame] | 91 | </excludes> |
| 92 | </configuration> |
| 93 | </plugin> |
| 94 | <plugin> |
| 95 | <groupId>org.apache.maven.plugins</groupId> |
| 96 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 97 | <configuration> |
| 98 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 99 | </configuration> |
| 100 | </plugin> |
| 101 | </plugins> |
| 102 | </build> |
| 103 | <dependencies> |
| 104 | <dependency> |
| 105 | <groupId>org.apache.felix</groupId> |
| 106 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId> |
Clement Escoffier | f344b95 | 2009-07-21 18:57:39 +0000 | [diff] [blame] | 107 | <version>${pom.version}</version> |
Clement Escoffier | de57c1a | 2009-07-17 08:10:38 +0000 | [diff] [blame] | 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>asm</groupId> |
| 111 | <artifactId>asm-all</artifactId> |
| 112 | <version>3.0</version> |
| 113 | <exclusions> |
| 114 | <exclusion> |
| 115 | <groupId>asm</groupId> |
| 116 | <artifactId>asm-tree</artifactId> |
| 117 | </exclusion> |
| 118 | </exclusions> |
| 119 | </dependency> |
| 120 | <dependency> |
| 121 | <groupId>org.apache.felix</groupId> |
| 122 | <artifactId>org.osgi.core</artifactId> |
| 123 | <version>1.2.0</version> |
| 124 | </dependency> |
| 125 | </dependencies> |
| 126 | </project> |