blob: 422ca13e2a5c57fdbfca778a71845096d5c905c0 [file] [log] [blame]
Clement Escoffier05a71aa2008-10-14 09:24:58 +00001<!--
Clement Escoffierde57c1a2009-07-17 08:10:38 +00002 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
Clement Escoffier19b08fc2009-05-08 09:02:02 +00009
Clement Escoffierde57c1a2009-07-17 08:10:38 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier19b08fc2009-05-08 09:02:02 +000011
Clement Escoffierde57c1a2009-07-17 08:10:38 +000012 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.
Clement Escoffier05a71aa2008-10-14 09:24:58 +000018-->
Clement Escoffierf42afdf2009-01-19 13:42:41 +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/xsd/maven-4.0.0.xsd">
Clement Escoffierde57c1a2009-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 <artifactId>org.apache.felix.ipojo.ant</artifactId>
28 <groupId>org.apache.felix</groupId>
29 <version>1.3.0-SNAPSHOT</version>
30 <packaging>bundle</packaging>
31 <name>Apache Felix iPOJO Ant Task</name>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000032
33 <description>
34 Ant task to package iPOJO-powered bundles.
35 </description>
36 <url>
37 http://felix.apache.org/site/ipojo-ant-task.html
38 </url>
39
Clement Escoffierde57c1a2009-07-17 08:10:38 +000040 <dependencies>
41 <dependency>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
44 <version>${pom.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
49 <version>${pom.version}</version>
50 </dependency>
51 <dependency>
52 <groupId>xerces</groupId>
53 <artifactId>xercesImpl</artifactId>
54 <version>2.9.1</version>
55 </dependency>
56 <dependency>
57 <groupId>ant</groupId>
58 <artifactId>ant</artifactId>
59 <version>1.6.5</version>
60 </dependency>
61 </dependencies>
62 <build>
63 <plugins>
64 <plugin>
65 <groupId>org.apache.felix</groupId>
66 <artifactId>maven-bundle-plugin</artifactId>
67 <version>1.4.3</version>
68 <extensions>true</extensions>
69 <configuration>
70 <instructions>
71 <Bundle-Name>iPOJO Ant Task</Bundle-Name>
72 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
73 <Bundle-Description> iPOJO Ant Task </Bundle-Description>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000074 <Bundle-DocURL>http://felix.apache.org/site/ipojo-ant-task.html</Bundle-DocURL>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000075 <Private-Package> org.apache.felix.ipojo.metadata,
76 org.apache.felix.ipojo.manipulator,
77 org.apache.felix.ipojo.xml.parser,
78 org.apache.felix.ipojo.manipulation*,
79 org.objectweb.asm.util;-split-package:=merge-first,
80 org.objectweb.asm;-split-package:=merge-first,
81 org.objectweb.asm.commons;-split-package:=merge-first,
82 org.apache.xerces.parsers, org.apache.xerces.xni*,
83 org.apache.xerces.impl*, org.apache.xerces.util.*,
84 org.apache.xerces.dom.*, org.apache.xerces.dom3.*
85 </Private-Package>
86 <Export-Package> org.apache.felix.ipojo.task </Export-Package>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000087 <Include-Resource> META-INF/LICENSE=LICENSE,
Clement Escoffierde57c1a2009-07-17 08:10:38 +000088 META-INF/NOTICE=NOTICE, META-INF/LICENSE.asm=LICENSE.asm
89 </Include-Resource>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000090 <Import-Package>!org.objectweb.asm.signature, !org.objectweb.asm.tree, !org.objectweb.asm.tree.analysis, *</Import-Package>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000091 </instructions>
92 <obrRepository>NONE</obrRepository>
93 </configuration>
94 </plugin>
95 <plugin>
96 <groupId>org.codehaus.mojo</groupId>
97 <artifactId>rat-maven-plugin</artifactId>
98 <configuration>
99 <excludeSubProjects>false</excludeSubProjects>
100 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
101 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
102 <excludes>
103 <param>doc/**/*</param>
104 <param>maven-eclipse.xml</param>
105 <param>.checkstyle</param>
106 <param>.externalToolBuilders/*</param>
107 <param>LICENSE.asm</param>
108 </excludes>
109 </configuration>
110 </plugin>
111 <plugin>
112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-checkstyle-plugin</artifactId>
114 <configuration>
115 <enableRulesSummary>false</enableRulesSummary>
116 <violationSeverity>warning</violationSeverity>
117 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
118 </configuration>
119 </plugin>
120 </plugins>
121 </build>
122</project>