blob: 5b0e68be087fd385a66b646f0a8307cb0433dbed [file] [log] [blame]
Clement Escoffier3482f242008-10-14 09:43:32 +00001<!--
Clement Escoffierbfa74d02009-07-19 16:25:18 +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 Escoffier0b93f382009-07-03 13:16:24 +00009
Clement Escoffierbfa74d02009-07-19 16:25:18 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier0b93f382009-07-03 13:16:24 +000011
Clement Escoffierbfa74d02009-07-19 16:25:18 +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 Escoffier3482f242008-10-14 09:43:32 +000018-->
Clement Escoffier8d2fb912009-01-19 11:18:18 +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 Escoffierbfa74d02009-07-19 16:25:18 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Clement Escoffier86215df2010-04-16 13:54:16 +000023 <version>1.2.1</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000024 <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 Escoffierea8025b2010-08-29 09:11:36 +000030 <version>1.7.0-SNAPSHOT</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000031 <name>Apache Felix iPOJO Manipulator</name>
Clement Escoffier6191b082010-08-29 09:05:18 +000032
Clement Escoffierbfa74d02009-07-19 16:25:18 +000033 <description>
34 iPOJO bytecode manipulator. This manipulator is used to instrument java classes in order to be managed by iPOJO.
35 </description>
Clement Escoffier6191b082010-08-29 09:05:18 +000036
Clement Escoffierbfa74d02009-07-19 16:25:18 +000037 <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 Escoffier9e4e85a2010-04-12 06:27:58 +000052 <version>1.4.0</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000053 </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 Escoffier134b0062010-05-01 10:46:02 +000065 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000066 <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 Escoffier6191b082010-08-29 09:05:18 +000074 <Include-Resource>
Clement Escoffier1593ef52010-07-14 18:31:13 +000075 META-INF/LICENSE=LICENSE,
Clement Escoffier6191b082010-08-29 09:05:18 +000076 META-INF/LICENSE.asm=LICENSE.asm,
Clement Escoffier1593ef52010-07-14 18:31:13 +000077 META-INF/NOTICE=NOTICE,
Clement Escoffier6191b082010-08-29 09:05:18 +000078 xsd=src/main/resources,
Clement Escoffier1593ef52010-07-14 18:31:13 +000079 META-INF/DEPENDENCIES=DEPENDENCIES
80 </Include-Resource>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000081 <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 Escoffier6191b082010-08-29 09:05:18 +000099 <param>DEPENDENCIES</param>
Clement Escoffierbfa74d02009-07-19 16:25:18 +0000100 </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 Escoffier6191b082010-08-29 09:05:18 +0000113
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 Escoffierbfa74d02009-07-19 16:25:18 +0000128 </build>
129</project>