Clement Escoffier | 3482f24 | 2008-10-14 09:43:32 +0000 | [diff] [blame] | 1 | <!-- |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 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 Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 9 | |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 10 | http://www.apache.org/licenses/LICENSE-2.0 |
Clement Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 11 | |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 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. |
Clement Escoffier | 3482f24 | 2008-10-14 09:43:32 +0000 | [diff] [blame] | 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 | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 20 | <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 | <packaging>bundle</packaging> |
| 28 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId> |
| 29 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 588c42f | 2009-09-04 08:09:44 +0000 | [diff] [blame] | 30 | <version>1.5.0-SNAPSHOT</version> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 31 | <name>Apache Felix iPOJO Manipulator</name> |
| 32 | |
| 33 | <description> |
| 34 | iPOJO bytecode manipulator. This manipulator is used to instrument java classes in order to be managed by iPOJO. |
| 35 | </description> |
| 36 | |
| 37 | <dependencies> |
| 38 | <dependency> |
| 39 | <groupId>asm</groupId> |
| 40 | <artifactId>asm-all</artifactId> |
| 41 | <version>3.0</version> |
| 42 | <exclusions> |
| 43 | <exclusion> |
| 44 | <groupId>asm</groupId> |
| 45 | <artifactId>asm-tree</artifactId> |
| 46 | </exclusion> |
| 47 | </exclusions> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.apache.felix</groupId> |
| 51 | <artifactId>org.apache.felix.ipojo.metadata</artifactId> |
Clement Escoffier | 0437a9d | 2009-09-04 08:11:58 +0000 | [diff] [blame] | 52 | <version>${pom.version}</version> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 53 | </dependency> |
| 54 | </dependencies> |
| 55 | <build> |
| 56 | <plugins> |
| 57 | <plugin> |
| 58 | <groupId>org.apache.felix</groupId> |
| 59 | <artifactId>maven-bundle-plugin</artifactId> |
| 60 | <version>1.4.3</version> |
| 61 | <extensions>true</extensions> |
| 62 | <configuration> |
| 63 | <instructions> |
| 64 | <Bundle-Name>iPOJO Manipulator</Bundle-Name> |
| 65 | <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor> |
| 66 | <Bundle-Description> iPOJO Manipulator </Bundle-Description> |
| 67 | <Export-Package> org.apache.felix.ipojo.manipulator |
| 68 | </Export-Package> |
| 69 | <Private-Package> org.apache.felix.ipojo.manipulation, |
| 70 | org.apache.felix.ipojo.manipulation.annotations, |
| 71 | org.apache.felix.ipojo.xml.parser, org.objectweb.asm, |
| 72 | org.objectweb.asm.commons </Private-Package> |
| 73 | <Include-Resource> META-INF/LICENSE=LICENSE, |
| 74 | META-INF/LICENSE.asm=LICENSE.asm, META-INF/NOTICE=NOTICE, |
| 75 | xsd=src/main/resources </Include-Resource> |
| 76 | <Import-Package>!org.objectweb.asm.tree, *</Import-Package> |
| 77 | </instructions> |
| 78 | <obrRepository>NONE</obrRepository> |
| 79 | </configuration> |
| 80 | </plugin> |
| 81 | <plugin> |
| 82 | <groupId>org.codehaus.mojo</groupId> |
| 83 | <artifactId>rat-maven-plugin</artifactId> |
| 84 | <configuration> |
| 85 | <excludeSubProjects>false</excludeSubProjects> |
| 86 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 87 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 88 | <excludes> |
| 89 | <param>doc/*</param> |
| 90 | <param>maven-eclipse.xml</param> |
| 91 | <param>.checkstyle</param> |
| 92 | <param>.externalToolBuilders/*</param> |
| 93 | <param>LICENSE.asm</param> |
| 94 | </excludes> |
| 95 | </configuration> |
| 96 | </plugin> |
| 97 | <plugin> |
| 98 | <groupId>org.apache.maven.plugins</groupId> |
| 99 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 100 | <configuration> |
| 101 | <enableRulesSummary>false</enableRulesSummary> |
| 102 | <violationSeverity>warning</violationSeverity> |
| 103 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 104 | </configuration> |
| 105 | </plugin> |
| 106 | </plugins> |
| 107 | </build> |
| 108 | </project> |