Clement Escoffier | 05a71aa | 2008-10-14 09:24:58 +0000 | [diff] [blame] | 1 | <!-- |
| 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 Escoffier | f42afdf | 2009-01-19 13:42:41 +0000 | [diff] [blame] | 19 | <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 Escoffier | 0b4c754 | 2008-10-14 09:20:39 +0000 | [diff] [blame] | 20 | <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 Escoffier | 50f4a29 | 2009-01-19 13:43:15 +0000 | [diff] [blame] | 29 | <version>1.3.0-SNAPSHOT</version> |
Clement Escoffier | 0b4c754 | 2008-10-14 09:20:39 +0000 | [diff] [blame] | 30 | <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 Escoffier | 3642c20 | 2009-01-19 14:02:44 +0000 | [diff] [blame] | 36 | <version>1.3.0-SNAPSHOT</version> |
Clement Escoffier | 0b4c754 | 2008-10-14 09:20:39 +0000 | [diff] [blame] | 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>org.apache.felix</groupId> |
| 40 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId> |
Clement Escoffier | 3642c20 | 2009-01-19 14:02:44 +0000 | [diff] [blame] | 41 | <version>1.3.0-SNAPSHOT</version> |
Clement Escoffier | 0b4c754 | 2008-10-14 09:20:39 +0000 | [diff] [blame] | 42 | </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 Escoffier | 0b4c754 | 2008-10-14 09:20:39 +0000 | [diff] [blame] | 54 | <build> |
| 55 | <plugins> |
| 56 | <plugin> |
| 57 | <groupId>org.apache.felix</groupId> |
| 58 | <artifactId>maven-bundle-plugin</artifactId> |
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 59 | <version>1.4.3</version> |
Clement Escoffier | 0b4c754 | 2008-10-14 09:20:39 +0000 | [diff] [blame] | 60 | <extensions>true</extensions> |
| 61 | <configuration> |
| 62 | <instructions> |
| 63 | <Bundle-Name>iPOJO Ant Task</Bundle-Name> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 64 | <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 Escoffier | 0b4c754 | 2008-10-14 09:20:39 +0000 | [diff] [blame] | 67 | 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 Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 73 | 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 Escoffier | 0b4c754 | 2008-10-14 09:20:39 +0000 | [diff] [blame] | 76 | </Private-Package> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 77 | <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 Escoffier | 0b4c754 | 2008-10-14 09:20:39 +0000 | [diff] [blame] | 80 | </Include-Resource> |
| 81 | </instructions> |
Clement Escoffier | 25137e3 | 2009-01-14 14:07:17 +0000 | [diff] [blame] | 82 | <obrRepository>NONE</obrRepository> |
Clement Escoffier | 0b4c754 | 2008-10-14 09:20:39 +0000 | [diff] [blame] | 83 | </configuration> |
| 84 | </plugin> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 85 | <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 Escoffier | 0b4c754 | 2008-10-14 09:20:39 +0000 | [diff] [blame] | 110 | </plugins> |
| 111 | </build> |
Clement Escoffier | 42ef155 | 2007-08-14 13:45:19 +0000 | [diff] [blame] | 112 | </project> |