blob: 98930513271604bc115efd3547a0ddfabef8ab9a [file] [log] [blame]
Clement Escoffier2edf9762008-10-14 09:24:58 +00001<!--
Clement Escoffierb062a702009-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 Escoffiercd019272009-05-08 09:02:02 +00009
Clement Escoffierb062a702009-07-17 08:10:38 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffiercd019272009-05-08 09:02:02 +000011
Clement Escoffierb062a702009-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 Escoffier2edf9762008-10-14 09:24:58 +000018-->
Clement Escoffier96f24ea2009-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 Escoffierb062a702009-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>
Clement Escoffier610f3b52009-08-26 16:19:02 +000029 <version>1.5.0-SNAPSHOT</version>
Clement Escoffierb062a702009-07-17 08:10:38 +000030 <packaging>bundle</packaging>
31 <name>Apache Felix iPOJO Ant Task</name>
Clement Escoffier0630c6b2009-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 Escoffierb062a702009-07-17 08:10:38 +000040 <dependencies>
41 <dependency>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier81bf35b2009-09-04 08:20:48 +000044 <version>1.4.0</version>
45 </dependency>
Clement Escoffierb062a702009-07-17 08:10:38 +000046 <dependency>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier81bf35b2009-09-04 08:20:48 +000049 <version>1.4.2</version>
Clement Escoffierb062a702009-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>
72 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
73 <Bundle-Description> iPOJO Ant Task </Bundle-Description>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000074 <Bundle-DocURL>http://felix.apache.org/site/ipojo-ant-task.html</Bundle-DocURL>
Clement Escoffierb062a702009-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 Escoffier0630c6b2009-07-19 16:25:18 +000087 <Include-Resource> META-INF/LICENSE=LICENSE,
Clement Escoffierb062a702009-07-17 08:10:38 +000088 META-INF/NOTICE=NOTICE, META-INF/LICENSE.asm=LICENSE.asm
89 </Include-Resource>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000090 <Import-Package>!org.objectweb.asm.signature, !org.objectweb.asm.tree, !org.objectweb.asm.tree.analysis, *</Import-Package>
Clement Escoffierb062a702009-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>