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