blob: fdd899a023e6bd77b324d32e8bbc697e83cd3248 [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"
20 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</artifactId>
24 <version>1.0.4</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>
32 <build>
33 <plugins>
34 <plugin>
35 <groupId>org.apache.felix</groupId>
36 <artifactId>maven-bundle-plugin</artifactId>
37 <version>1.4.3</version>
38 <extensions>true</extensions>
39 <configuration>
40 <instructions>
41 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
42 <Private-Package>org.apache.felix.org.apache.felix.ipojo.online.manipulator</Private-Package>
43 <Export-Package> org.apache.felix.ipojo.manipulator,
44 org.apache.felix.ipojo.xml.parser,
45 org.apache.felix.ipojo.manipulation,
Clement Escoffierc2f4c092009-04-22 09:14:00 +000046 org.apache.felix.ipojo.manipulation.annotations,
Clement Escoffier821ad052009-04-22 10:08:45 +000047 org.objectweb.asm.commons, org.objectweb.asm </Export-Package>
48 <Import-Package> !org.objectweb.asm.tree, !sun.io, *
Clement Escoffierc2f4c092009-04-22 09:14:00 +000049 </Import-Package>
50 <Embed-Dependency>xercesImpl|xml-resolver</Embed-Dependency>
Clement Escoffier821ad052009-04-22 10:08:45 +000051 </instructions>
52 </configuration>
53 </plugin>
54 <plugin>
55 <groupId>org.apache.felix</groupId>
56 <artifactId>maven-ipojo-plugin</artifactId>
57 <version>1.3.0-SNAPSHOT</version>
58 <executions>
59 <execution>
60 <goals>
61 <goal>ipojo-bundle</goal>
62 </goals>
63 </execution>
64 </executions>
65 </plugin>
66 <plugin>
67 <groupId>org.codehaus.mojo</groupId>
68 <artifactId>rat-maven-plugin</artifactId>
69 <configuration>
70 <excludeSubProjects>false</excludeSubProjects>
71 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
72 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
73 <excludes>
74 <param>doc/*</param>
75 <param>maven-eclipse.xml</param>
76 <param>.checkstyle</param>
77 <param>.externalToolBuilders/*</param>
78 </excludes>
79 </configuration>
80 </plugin>
81 <plugin>
82 <groupId>org.apache.maven.plugins</groupId>
83 <artifactId>maven-checkstyle-plugin</artifactId>
84 <configuration>
85 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
86 </configuration>
87 </plugin>
88 </plugins>
89 </build>
90 <dependencies>
91 <dependency>
Clement Escoffierc2f4c092009-04-22 09:14:00 +000092 <groupId>org.apache.felix</groupId>
93 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
94 <version>1.3.0-SNAPSHOT</version>
95 </dependency>
96 <dependency>
97 <groupId>asm</groupId>
98 <artifactId>asm-all</artifactId>
99 <version>3.0</version>
100 <exclusions>
101 <exclusion>
102 <groupId>asm</groupId>
103 <artifactId>asm-tree</artifactId>
104 </exclusion>
105 </exclusions>
106 </dependency>
Clement Escoffier821ad052009-04-22 10:08:45 +0000107 <dependency>
108 <groupId>org.apache.felix</groupId>
109 <artifactId>org.osgi.core</artifactId>
110 <version>1.2.0</version>
111 </dependency>
112 <dependency>
113 <groupId>xerces</groupId>
114 <artifactId>xercesImpl</artifactId>
115 <version>2.9.1</version>
116 </dependency>
117 <dependency>
118 <groupId>xml-resolver</groupId>
119 <artifactId>xml-resolver</artifactId>
120 <version>1.2</version>
121 </dependency>
122 </dependencies>
123</project>