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> |
Clement Escoffier | 86215df | 2010-04-16 13:54:16 +0000 | [diff] [blame] | 23 | <version>1.2.1</version> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +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 | ea8025b | 2010-08-29 09:11:36 +0000 | [diff] [blame] | 30 | <version>1.7.0-SNAPSHOT</version> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 31 | <name>Apache Felix iPOJO Manipulator</name> |
Clement Escoffier | 6191b08 | 2010-08-29 09:05:18 +0000 | [diff] [blame] | 32 | |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 33 | <description> |
| 34 | iPOJO bytecode manipulator. This manipulator is used to instrument java classes in order to be managed by iPOJO. |
| 35 | </description> |
Clement Escoffier | 6191b08 | 2010-08-29 09:05:18 +0000 | [diff] [blame] | 36 | |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 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 | 9e4e85a | 2010-04-12 06:27:58 +0000 | [diff] [blame] | 52 | <version>1.4.0</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> |
Clement Escoffier | 134b006 | 2010-05-01 10:46:02 +0000 | [diff] [blame] | 65 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 66 | <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor> |
| 67 | <Bundle-Description> iPOJO Manipulator </Bundle-Description> |
| 68 | <Export-Package> org.apache.felix.ipojo.manipulator |
| 69 | </Export-Package> |
| 70 | <Private-Package> org.apache.felix.ipojo.manipulation, |
| 71 | org.apache.felix.ipojo.manipulation.annotations, |
| 72 | org.apache.felix.ipojo.xml.parser, org.objectweb.asm, |
| 73 | org.objectweb.asm.commons </Private-Package> |
Clement Escoffier | 6191b08 | 2010-08-29 09:05:18 +0000 | [diff] [blame] | 74 | <Include-Resource> |
Clement Escoffier | 1593ef5 | 2010-07-14 18:31:13 +0000 | [diff] [blame] | 75 | META-INF/LICENSE=LICENSE, |
Clement Escoffier | 6191b08 | 2010-08-29 09:05:18 +0000 | [diff] [blame] | 76 | META-INF/LICENSE.asm=LICENSE.asm, |
Clement Escoffier | 1593ef5 | 2010-07-14 18:31:13 +0000 | [diff] [blame] | 77 | META-INF/NOTICE=NOTICE, |
Clement Escoffier | 6191b08 | 2010-08-29 09:05:18 +0000 | [diff] [blame] | 78 | xsd=src/main/resources, |
Clement Escoffier | 1593ef5 | 2010-07-14 18:31:13 +0000 | [diff] [blame] | 79 | META-INF/DEPENDENCIES=DEPENDENCIES |
| 80 | </Include-Resource> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 81 | <Import-Package>!org.objectweb.asm.tree, *</Import-Package> |
| 82 | </instructions> |
| 83 | <obrRepository>NONE</obrRepository> |
| 84 | </configuration> |
| 85 | </plugin> |
| 86 | <plugin> |
| 87 | <groupId>org.codehaus.mojo</groupId> |
| 88 | <artifactId>rat-maven-plugin</artifactId> |
| 89 | <configuration> |
| 90 | <excludeSubProjects>false</excludeSubProjects> |
| 91 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 92 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 93 | <excludes> |
| 94 | <param>doc/*</param> |
| 95 | <param>maven-eclipse.xml</param> |
| 96 | <param>.checkstyle</param> |
| 97 | <param>.externalToolBuilders/*</param> |
| 98 | <param>LICENSE.asm</param> |
Clement Escoffier | 6191b08 | 2010-08-29 09:05:18 +0000 | [diff] [blame] | 99 | <param>DEPENDENCIES</param> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 100 | </excludes> |
| 101 | </configuration> |
| 102 | </plugin> |
| 103 | <plugin> |
| 104 | <groupId>org.apache.maven.plugins</groupId> |
| 105 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 106 | <configuration> |
| 107 | <enableRulesSummary>false</enableRulesSummary> |
| 108 | <violationSeverity>warning</violationSeverity> |
| 109 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 110 | </configuration> |
| 111 | </plugin> |
| 112 | </plugins> |
Clement Escoffier | 6191b08 | 2010-08-29 09:05:18 +0000 | [diff] [blame] | 113 | |
| 114 | <resources> |
| 115 | <resource> |
| 116 | <directory>src/main/resources</directory> |
| 117 | </resource> |
| 118 | <resource> |
| 119 | <directory>.</directory> |
| 120 | <targetPath>META-INF</targetPath> |
| 121 | <includes> |
| 122 | <include>LICENSE*</include> |
| 123 | <include>NOTICE*</include> |
| 124 | <include>DEPENDENCIES*</include> |
| 125 | </includes> |
| 126 | </resource> |
| 127 | </resources> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 128 | </build> |
| 129 | </project> |