blob: db4409899ec5fd0586bb011d5ff37b4cbe682657 [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>
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 <artifactId>org.apache.felix.ipojo.ant</artifactId>
28 <groupId>org.apache.felix</groupId>
Clement Escoffier33d2f302010-04-16 14:15:58 +000029 <version>1.7.0-SNAPSHOT</version>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000030 <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>
Clement Escoffier9e4e85a2010-04-12 06:27:58 +000044 <version>1.4.0</version>
Clement Escoffierba647bf2009-09-04 08:20:48 +000045 </dependency>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000046 <dependency>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier134b0062010-05-01 10:46:02 +000049 <version>${project.version}</version>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000050 </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>
Clement Escoffier134b0062010-05-01 10:46:02 +000072 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000073 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
74 <Bundle-Description> iPOJO Ant Task </Bundle-Description>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000075 <Bundle-DocURL>http://felix.apache.org/site/ipojo-ant-task.html</Bundle-DocURL>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000076 <Private-Package> org.apache.felix.ipojo.metadata,
77 org.apache.felix.ipojo.manipulator,
78 org.apache.felix.ipojo.xml.parser,
79 org.apache.felix.ipojo.manipulation*,
80 org.objectweb.asm.util;-split-package:=merge-first,
81 org.objectweb.asm;-split-package:=merge-first,
82 org.objectweb.asm.commons;-split-package:=merge-first,
83 org.apache.xerces.parsers, org.apache.xerces.xni*,
84 org.apache.xerces.impl*, org.apache.xerces.util.*,
85 org.apache.xerces.dom.*, org.apache.xerces.dom3.*
86 </Private-Package>
87 <Export-Package> org.apache.felix.ipojo.task </Export-Package>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000088 <Include-Resource> META-INF/LICENSE=LICENSE,
Clement Escoffierde57c1a2009-07-17 08:10:38 +000089 META-INF/NOTICE=NOTICE, META-INF/LICENSE.asm=LICENSE.asm
90 </Include-Resource>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000091 <Import-Package>!org.objectweb.asm.signature, !org.objectweb.asm.tree, !org.objectweb.asm.tree.analysis, *</Import-Package>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000092 </instructions>
93 <obrRepository>NONE</obrRepository>
94 </configuration>
95 </plugin>
96 <plugin>
97 <groupId>org.codehaus.mojo</groupId>
98 <artifactId>rat-maven-plugin</artifactId>
99 <configuration>
100 <excludeSubProjects>false</excludeSubProjects>
101 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
102 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
103 <excludes>
104 <param>doc/**/*</param>
105 <param>maven-eclipse.xml</param>
106 <param>.checkstyle</param>
107 <param>.externalToolBuilders/*</param>
108 <param>LICENSE.asm</param>
109 </excludes>
110 </configuration>
111 </plugin>
112 <plugin>
113 <groupId>org.apache.maven.plugins</groupId>
114 <artifactId>maven-checkstyle-plugin</artifactId>
115 <configuration>
116 <enableRulesSummary>false</enableRulesSummary>
117 <violationSeverity>warning</violationSeverity>
118 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
119 </configuration>
120 </plugin>
121 </plugins>
122 </build>
123</project>