Clement Escoffier | 3482f24 | 2008-10-14 09:43:32 +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 | 8d2fb91 | 2009-01-19 11:18:18 +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 | a7e7365 | 2008-10-14 08:40:07 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | e259159 | 2009-04-30 14:00:40 +0000 | [diff] [blame] | 22 | <artifactId>felix-parent</artifactId> |
| 23 | <version>1.2.0</version> |
Clement Escoffier | a7e7365 | 2008-10-14 08:40:07 +0000 | [diff] [blame] | 24 | <relativePath>../../pom/pom.xml</relativePath> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
| 28 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId> |
| 29 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 06246d6 | 2009-01-19 11:18:58 +0000 | [diff] [blame] | 30 | <version>1.3.0-SNAPSHOT</version> |
Clement Escoffier | a7e7365 | 2008-10-14 08:40:07 +0000 | [diff] [blame] | 31 | <name>Apache Felix iPOJO Manipulator</name> |
Clement Escoffier | a7e7365 | 2008-10-14 08:40:07 +0000 | [diff] [blame] | 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>asm</groupId> |
| 35 | <artifactId>asm-all</artifactId> |
| 36 | <version>3.0</version> |
| 37 | <exclusions> |
| 38 | <exclusion> |
| 39 | <groupId>asm</groupId> |
| 40 | <artifactId>asm-tree</artifactId> |
| 41 | </exclusion> |
| 42 | </exclusions> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.apache.felix</groupId> |
| 46 | <artifactId>org.apache.felix.ipojo.metadata</artifactId> |
Clement Escoffier | 3642c20 | 2009-01-19 14:02:44 +0000 | [diff] [blame] | 47 | <version>1.3.0-SNAPSHOT</version> |
Clement Escoffier | a7e7365 | 2008-10-14 08:40:07 +0000 | [diff] [blame] | 48 | </dependency> |
| 49 | </dependencies> |
| 50 | <build> |
| 51 | <plugins> |
| 52 | <plugin> |
| 53 | <groupId>org.apache.felix</groupId> |
| 54 | <artifactId>maven-bundle-plugin</artifactId> |
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 55 | <version>1.4.3</version> |
Clement Escoffier | a7e7365 | 2008-10-14 08:40:07 +0000 | [diff] [blame] | 56 | <extensions>true</extensions> |
| 57 | <configuration> |
| 58 | <instructions> |
| 59 | <Bundle-Name>iPOJO Manipulator</Bundle-Name> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 60 | <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor> |
| 61 | <Bundle-Description> iPOJO Manipulator </Bundle-Description> |
| 62 | <Export-Package> org.apache.felix.ipojo.manipulator |
Clement Escoffier | a7e7365 | 2008-10-14 08:40:07 +0000 | [diff] [blame] | 63 | </Export-Package> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 64 | <Private-Package> org.apache.felix.ipojo.manipulation, |
Clement Escoffier | a7e7365 | 2008-10-14 08:40:07 +0000 | [diff] [blame] | 65 | org.apache.felix.ipojo.manipulation.annotations, |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 66 | org.apache.felix.ipojo.xml.parser, org.objectweb.asm, |
| 67 | org.objectweb.asm.commons </Private-Package> |
| 68 | <Include-Resource> META-INF/LICENCE=LICENSE, |
Clement Escoffier | 7408730 | 2009-04-09 09:22:31 +0000 | [diff] [blame] | 69 | META-INF/LICENSE.asm=LICENSE.asm, META-INF/NOTICE=NOTICE, |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 70 | xsd=src/main/resources </Include-Resource> |
Clement Escoffier | a7e7365 | 2008-10-14 08:40:07 +0000 | [diff] [blame] | 71 | </instructions> |
Clement Escoffier | 25137e3 | 2009-01-14 14:07:17 +0000 | [diff] [blame] | 72 | <obrRepository>NONE</obrRepository> |
Clement Escoffier | a7e7365 | 2008-10-14 08:40:07 +0000 | [diff] [blame] | 73 | </configuration> |
| 74 | </plugin> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 75 | <plugin> |
| 76 | <groupId>org.codehaus.mojo</groupId> |
| 77 | <artifactId>rat-maven-plugin</artifactId> |
| 78 | <configuration> |
| 79 | <excludeSubProjects>false</excludeSubProjects> |
| 80 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 81 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 82 | <excludes> |
| 83 | <param>doc/*</param> |
| 84 | <param>maven-eclipse.xml</param> |
| 85 | <param>.checkstyle</param> |
| 86 | <param>.externalToolBuilders/*</param> |
| 87 | <param>LICENSE.asm</param> |
| 88 | </excludes> |
| 89 | </configuration> |
| 90 | </plugin> |
| 91 | <plugin> |
| 92 | <groupId>org.apache.maven.plugins</groupId> |
| 93 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 94 | <configuration> |
| 95 | <enableRulesSummary>false</enableRulesSummary> |
| 96 | <violationSeverity>warning</violationSeverity> |
| 97 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 98 | </configuration> |
| 99 | </plugin> |
Clement Escoffier | a7e7365 | 2008-10-14 08:40:07 +0000 | [diff] [blame] | 100 | </plugins> |
| 101 | </build> |
Clement Escoffier | 156112b | 2008-05-18 22:03:26 +0000 | [diff] [blame] | 102 | </project> |