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> |
Clement Escoffier | 86215df | 2010-04-16 13:54:16 +0000 | [diff] [blame] | 23 | <version>1.2.1</version> |
Clement Escoffier | de57c1a | 2009-07-17 08:10:38 +0000 | [diff] [blame] | 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 | 4fceea6 | 2010-04-16 14:47:54 +0000 | [diff] [blame] | 29 | <version>1.7.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> |
Clement Escoffier | 134b006 | 2010-05-01 10:46:02 +0000 | [diff] [blame] | 46 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
Clement Escoffier | de57c1a | 2009-07-17 08:10:38 +0000 | [diff] [blame] | 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 | 1593ef5 | 2010-07-14 18:31:13 +0000 | [diff] [blame] | 58 | <Include-Resource> |
| 59 | META-INF/LICENSE=LICENSE, |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 60 | META-INF/LICENSE.asm=LICENSE.asm, |
Clement Escoffier | 1593ef5 | 2010-07-14 18:31:13 +0000 | [diff] [blame] | 61 | META-INF/NOTICE=NOTICE, |
| 62 | META-INF/DEPENDENCIES=DEPENDENCIES |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 63 | </Include-Resource> |
Clement Escoffier | de57c1a | 2009-07-17 08:10:38 +0000 | [diff] [blame] | 64 | <!-- <Embed-Dependency>xercesImpl|xml-resolver</Embed-Dependency> --> |
| 65 | </instructions> |
| 66 | </configuration> |
| 67 | </plugin> |
| 68 | <plugin> |
| 69 | <groupId>org.apache.felix</groupId> |
| 70 | <artifactId>maven-ipojo-plugin</artifactId> |
Clement Escoffier | 134b006 | 2010-05-01 10:46:02 +0000 | [diff] [blame] | 71 | <version>${project.version}</version> |
Clement Escoffier | de57c1a | 2009-07-17 08:10:38 +0000 | [diff] [blame] | 72 | <executions> |
| 73 | <execution> |
| 74 | <goals> |
| 75 | <goal>ipojo-bundle</goal> |
| 76 | </goals> |
Clement Escoffier | c1463ca | 2009-08-22 09:14:02 +0000 | [diff] [blame] | 77 | <configuration> |
| 78 | <ignoreAnnotations>true</ignoreAnnotations> |
| 79 | </configuration> |
Clement Escoffier | de57c1a | 2009-07-17 08:10:38 +0000 | [diff] [blame] | 80 | </execution> |
| 81 | </executions> |
| 82 | </plugin> |
| 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> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 91 | <param>doc/**/*</param> |
Clement Escoffier | de57c1a | 2009-07-17 08:10:38 +0000 | [diff] [blame] | 92 | <param>maven-eclipse.xml</param> |
| 93 | <param>.checkstyle</param> |
| 94 | <param>.externalToolBuilders/*</param> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 95 | <param>LICENSE.asm</param> |
Clement Escoffier | de57c1a | 2009-07-17 08:10:38 +0000 | [diff] [blame] | 96 | </excludes> |
| 97 | </configuration> |
| 98 | </plugin> |
| 99 | <plugin> |
| 100 | <groupId>org.apache.maven.plugins</groupId> |
| 101 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 102 | <configuration> |
| 103 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 104 | </configuration> |
| 105 | </plugin> |
| 106 | </plugins> |
| 107 | </build> |
| 108 | <dependencies> |
| 109 | <dependency> |
| 110 | <groupId>org.apache.felix</groupId> |
| 111 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId> |
Clement Escoffier | 134b006 | 2010-05-01 10:46:02 +0000 | [diff] [blame] | 112 | <version>${project.version}</version> |
Clement Escoffier | de57c1a | 2009-07-17 08:10:38 +0000 | [diff] [blame] | 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>asm</groupId> |
| 116 | <artifactId>asm-all</artifactId> |
| 117 | <version>3.0</version> |
| 118 | <exclusions> |
| 119 | <exclusion> |
| 120 | <groupId>asm</groupId> |
| 121 | <artifactId>asm-tree</artifactId> |
| 122 | </exclusion> |
| 123 | </exclusions> |
| 124 | </dependency> |
| 125 | <dependency> |
Clement Escoffier | 86215df | 2010-04-16 13:54:16 +0000 | [diff] [blame] | 126 | <groupId>org.osgi</groupId> |
Clement Escoffier | de57c1a | 2009-07-17 08:10:38 +0000 | [diff] [blame] | 127 | <artifactId>org.osgi.core</artifactId> |
Clement Escoffier | 86215df | 2010-04-16 13:54:16 +0000 | [diff] [blame] | 128 | <version>4.0.0</version> |
Clement Escoffier | de57c1a | 2009-07-17 08:10:38 +0000 | [diff] [blame] | 129 | </dependency> |
| 130 | </dependencies> |
| 131 | </project> |