blob: e564474d88dcafc11044915ec7e4a9fc621ce0c1 [file] [log] [blame]
Clement Escoffier1aabcb22009-04-22 10:08:45 +00001<!--
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 Escoffierafbd60b2009-07-21 18:55:02 +000019<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 Escoffierb062a702009-07-17 08:10:38 +000020 <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 Escoffier4032cd02009-09-04 08:13:50 +000029 <version>1.5.0-SNAPSHOT</version>
Clement Escoffierb062a702009-07-17 08:10:38 +000030 <name>Apache Felix iPOJO URL Handler</name>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000031
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 Escoffierb062a702009-07-17 08:10:38 +000037 <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 Escoffier0630c6b2009-07-19 16:25:18 +000048 <Bundle-DocURL>
49 http://felix.apache.org/site/apache-felix-ipojo-online-manipulator.html
50 </Bundle-DocURL>
Clement Escoffierb062a702009-07-17 08:10:38 +000051 <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 Escoffier0630c6b2009-07-19 16:25:18 +000058 <Include-Resource> META-INF/LICENSE=LICENSE,
59 META-INF/LICENSE.asm=LICENSE.asm,
60 META-INF/NOTICE=NOTICE
61 </Include-Resource>
Clement Escoffierb062a702009-07-17 08:10:38 +000062 <!-- <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 Escoffier6dd04a02009-09-04 08:16:11 +000069 <version>${pom.version}</version>
Clement Escoffierb062a702009-07-17 08:10:38 +000070 <executions>
71 <execution>
72 <goals>
73 <goal>ipojo-bundle</goal>
74 </goals>
Clement Escoffierdc53cee2009-08-22 09:14:02 +000075 <configuration>
76 <ignoreAnnotations>true</ignoreAnnotations>
77 </configuration>
Clement Escoffierb062a702009-07-17 08:10:38 +000078 </execution>
79 </executions>
80 </plugin>
81 <plugin>
82 <groupId>org.codehaus.mojo</groupId>
83 <artifactId>rat-maven-plugin</artifactId>
84 <configuration>
85 <excludeSubProjects>false</excludeSubProjects>
86 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
87 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
88 <excludes>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000089 <param>doc/**/*</param>
Clement Escoffierb062a702009-07-17 08:10:38 +000090 <param>maven-eclipse.xml</param>
91 <param>.checkstyle</param>
92 <param>.externalToolBuilders/*</param>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000093 <param>LICENSE.asm</param>
Clement Escoffierb062a702009-07-17 08:10:38 +000094 </excludes>
95 </configuration>
96 </plugin>
97 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-checkstyle-plugin</artifactId>
100 <configuration>
101 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
102 </configuration>
103 </plugin>
104 </plugins>
105 </build>
106 <dependencies>
107 <dependency>
108 <groupId>org.apache.felix</groupId>
109 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier6dd04a02009-09-04 08:16:11 +0000110 <version>${pom.version}</version>
Clement Escoffierb062a702009-07-17 08:10:38 +0000111 </dependency>
112 <dependency>
113 <groupId>asm</groupId>
114 <artifactId>asm-all</artifactId>
115 <version>3.0</version>
116 <exclusions>
117 <exclusion>
118 <groupId>asm</groupId>
119 <artifactId>asm-tree</artifactId>
120 </exclusion>
121 </exclusions>
122 </dependency>
123 <dependency>
124 <groupId>org.apache.felix</groupId>
125 <artifactId>org.osgi.core</artifactId>
126 <version>1.2.0</version>
127 </dependency>
128 </dependencies>
129</project>