blob: 168655c580b2f0ecb94708784527fe751927d006 [file] [log] [blame]
Clement Escoffier05a71aa2008-10-14 09:24:58 +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
Clement Escoffier19b08fc2009-05-08 09:02:02 +00009
Clement Escoffier05a71aa2008-10-14 09:24:58 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier19b08fc2009-05-08 09:02:02 +000011
Clement Escoffier05a71aa2008-10-14 09:24:58 +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.
18-->
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 Escoffier0b4c7542008-10-14 09:20:39 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
Clement Escoffiere2591592009-04-30 14:00:40 +000022 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
Clement Escoffier0b4c7542008-10-14 09:20:39 +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 Escoffier50f4a292009-01-19 13:43:15 +000029 <version>1.3.0-SNAPSHOT</version>
Clement Escoffier0b4c7542008-10-14 09:20:39 +000030 <packaging>bundle</packaging>
31 <name>Apache Felix iPOJO Ant Task</name>
32 <dependencies>
33 <dependency>
34 <groupId>org.apache.felix</groupId>
35 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier3642c202009-01-19 14:02:44 +000036 <version>1.3.0-SNAPSHOT</version>
Clement Escoffier0b4c7542008-10-14 09:20:39 +000037 </dependency>
38 <dependency>
39 <groupId>org.apache.felix</groupId>
40 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier3642c202009-01-19 14:02:44 +000041 <version>1.3.0-SNAPSHOT</version>
Clement Escoffier0b4c7542008-10-14 09:20:39 +000042 </dependency>
43 <dependency>
44 <groupId>xerces</groupId>
45 <artifactId>xercesImpl</artifactId>
46 <version>2.4.0</version>
47 </dependency>
48 <dependency>
49 <groupId>ant</groupId>
50 <artifactId>ant</artifactId>
51 <version>1.6.5</version>
52 </dependency>
53 </dependencies>
Clement Escoffier0b4c7542008-10-14 09:20:39 +000054 <build>
55 <plugins>
56 <plugin>
57 <groupId>org.apache.felix</groupId>
58 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000059 <version>1.4.3</version>
Clement Escoffier0b4c7542008-10-14 09:20:39 +000060 <extensions>true</extensions>
61 <configuration>
62 <instructions>
63 <Bundle-Name>iPOJO Ant Task</Bundle-Name>
Clement Escoffier31f25df2008-11-20 15:51:56 +000064 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
65 <Bundle-Description> iPOJO Ant Task </Bundle-Description>
66 <Private-Package> org.apache.felix.ipojo.metadata,
Clement Escoffier0b4c7542008-10-14 09:20:39 +000067 org.apache.felix.ipojo.manipulator,
68 org.apache.felix.ipojo.xml.parser,
69 org.apache.felix.ipojo.manipulation*,
70 org.objectweb.asm.util;-split-package:=merge-first,
71 org.objectweb.asm;-split-package:=merge-first,
72 org.objectweb.asm.commons;-split-package:=merge-first,
Clement Escoffier31f25df2008-11-20 15:51:56 +000073 org.apache.xerces.parsers, org.apache.xerces.xni*,
74 org.apache.xerces.impl*, org.apache.xerces.util.*,
Clement Escoffier19b08fc2009-05-08 09:02:02 +000075 org.apache.xerces.dom.*, org.apache.xerces.dom3.*
Clement Escoffier0b4c7542008-10-14 09:20:39 +000076 </Private-Package>
Clement Escoffier31f25df2008-11-20 15:51:56 +000077 <Export-Package> org.apache.felix.ipojo.task </Export-Package>
78 <Include-Resource> META-INF/LICENCE=LICENSE,
Clement Escoffier19b08fc2009-05-08 09:02:02 +000079 META-INF/NOTICE=NOTICE, META-INF/LICENSE.asm=LICENSE.asm
Clement Escoffier0b4c7542008-10-14 09:20:39 +000080 </Include-Resource>
81 </instructions>
Clement Escoffier25137e32009-01-14 14:07:17 +000082 <obrRepository>NONE</obrRepository>
Clement Escoffier0b4c7542008-10-14 09:20:39 +000083 </configuration>
84 </plugin>
Clement Escoffier31f25df2008-11-20 15:51:56 +000085 <plugin>
86 <groupId>org.codehaus.mojo</groupId>
87 <artifactId>rat-maven-plugin</artifactId>
88 <configuration>
89 <excludeSubProjects>false</excludeSubProjects>
90 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
91 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
92 <excludes>
93 <param>doc/**/*</param>
94 <param>maven-eclipse.xml</param>
95 <param>.checkstyle</param>
96 <param>.externalToolBuilders/*</param>
97 <param>LICENSE.asm</param>
98 </excludes>
99 </configuration>
100 </plugin>
101 <plugin>
102 <groupId>org.apache.maven.plugins</groupId>
103 <artifactId>maven-checkstyle-plugin</artifactId>
104 <configuration>
105 <enableRulesSummary>false</enableRulesSummary>
106 <violationSeverity>warning</violationSeverity>
107 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
108 </configuration>
109 </plugin>
Clement Escoffier0b4c7542008-10-14 09:20:39 +0000110 </plugins>
111 </build>
Clement Escoffier42ef1552007-08-14 13:45:19 +0000112</project>