blob: 1237b8294299d7529c1db5fae7070e3c3c3725e3 [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-->
Clement Escoffier7e594212009-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 Escoffierde57c1a2009-07-17 08:10:38 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Clement Escoffier86215df2010-04-16 13:54:16 +000023 <version>1.2.1</version>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000024 <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 Escoffier4fceea62010-04-16 14:47:54 +000029 <version>1.7.0-SNAPSHOT</version>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000030 <name>Apache Felix iPOJO URL Handler</name>
Clement Escoffierf6b66682011-02-16 15:51:44 +000031
Clement Escoffierbfa74d02009-07-19 16:25:18 +000032 <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>
Clement Escoffierf6b66682011-02-16 15:51:44 +000036
Clement Escoffierde57c1a2009-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>
Clement Escoffier134b0062010-05-01 10:46:02 +000046 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000047 <Private-Package>org.apache.felix.ipojo.online.manipulator</Private-Package>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000048 <Bundle-DocURL>
49 http://felix.apache.org/site/apache-felix-ipojo-online-manipulator.html
50 </Bundle-DocURL>
Clement Escoffierde57c1a2009-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,
Clement Escoffiera6725432011-10-05 14:55:48 +000055 org.objectweb.asm.commons;version=3.3.1, org.objectweb.asm.signature;version=3.3.1, org.objectweb.asm;version=3.3.1
56 </Export-Package>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000057 <Import-Package> !org.objectweb.asm.tree, !sun.io, org.osgi.framework;version=1.3, *
58 </Import-Package>
Clement Escoffierf6b66682011-02-16 15:51:44 +000059 <Include-Resource>
Clement Escoffier1593ef52010-07-14 18:31:13 +000060 META-INF/LICENSE=LICENSE,
Clement Escoffierbfa74d02009-07-19 16:25:18 +000061 META-INF/LICENSE.asm=LICENSE.asm,
Clement Escoffier1593ef52010-07-14 18:31:13 +000062 META-INF/NOTICE=NOTICE,
63 META-INF/DEPENDENCIES=DEPENDENCIES
Clement Escoffierbfa74d02009-07-19 16:25:18 +000064 </Include-Resource>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000065 <!-- <Embed-Dependency>xercesImpl|xml-resolver</Embed-Dependency> -->
66 </instructions>
67 </configuration>
68 </plugin>
69 <plugin>
70 <groupId>org.apache.felix</groupId>
71 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierf6b66682011-02-16 15:51:44 +000072 <version>1.8.0</version>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000073 <executions>
74 <execution>
75 <goals>
76 <goal>ipojo-bundle</goal>
77 </goals>
Clement Escoffierc1463ca2009-08-22 09:14:02 +000078 <configuration>
79 <ignoreAnnotations>true</ignoreAnnotations>
80 </configuration>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000081 </execution>
82 </executions>
83 </plugin>
84 <plugin>
85 <groupId>org.codehaus.mojo</groupId>
86 <artifactId>rat-maven-plugin</artifactId>
87 <configuration>
88 <excludeSubProjects>false</excludeSubProjects>
89 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
90 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
91 <excludes>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000092 <param>doc/**/*</param>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000093 <param>maven-eclipse.xml</param>
94 <param>.checkstyle</param>
95 <param>.externalToolBuilders/*</param>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000096 <param>LICENSE.asm</param>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000097 </excludes>
98 </configuration>
99 </plugin>
100 <plugin>
101 <groupId>org.apache.maven.plugins</groupId>
102 <artifactId>maven-checkstyle-plugin</artifactId>
103 <configuration>
104 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
105 </configuration>
106 </plugin>
107 </plugins>
108 </build>
109 <dependencies>
110 <dependency>
111 <groupId>org.apache.felix</groupId>
112 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffierf6b66682011-02-16 15:51:44 +0000113 <version>1.8.0</version>
Clement Escoffierde57c1a2009-07-17 08:10:38 +0000114 </dependency>
115 <dependency>
116 <groupId>asm</groupId>
117 <artifactId>asm-all</artifactId>
Clement Escoffiera6725432011-10-05 14:55:48 +0000118 <version>3.3.1</version>
Clement Escoffierde57c1a2009-07-17 08:10:38 +0000119 <exclusions>
120 <exclusion>
121 <groupId>asm</groupId>
122 <artifactId>asm-tree</artifactId>
123 </exclusion>
124 </exclusions>
125 </dependency>
126 <dependency>
Clement Escoffier86215df2010-04-16 13:54:16 +0000127 <groupId>org.osgi</groupId>
Clement Escoffierde57c1a2009-07-17 08:10:38 +0000128 <artifactId>org.osgi.core</artifactId>
Clement Escoffier86215df2010-04-16 13:54:16 +0000129 <version>4.0.0</version>
Clement Escoffierde57c1a2009-07-17 08:10:38 +0000130 </dependency>
131 </dependencies>
132</project>