blob: 3901c4cbc7a1021eb6f245855a994e2b50ae272d [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
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 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>
22 <artifactId>felix</artifactId>
23 <version>1.0.2</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>
Clement Escoffierf42afdf2009-01-19 13:42:41 +000029 <version>1.2.0</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 Escoffier2b950232009-01-19 13:40:02 +000036 <version>1.2.0</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 Escoffier2b950232009-01-19 13:40:02 +000041 <version>1.2.0</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.*,
75 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,
79 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 Escoffierf42afdf2009-01-19 13:42:41 +0000112
113 <scm>
114 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.ant-1.2.0</connection>
115 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.ant-1.2.0</developerConnection>
116 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.ant-1.2.0</url>
117 </scm>
Clement Escoffier42ef1552007-08-14 13:45:19 +0000118</project>