blob: 2a09e61a34a4b2c4d7e5b63febee28719b67523c [file] [log] [blame]
Clement Escoffierec471f52008-10-14 09:43:32 +00001<!--
Clement Escoffier0630c6b2009-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 Escoffierc80b73d2009-07-03 13:16:24 +00009
Clement Escoffier0630c6b2009-07-19 16:25:18 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffierc80b73d2009-07-03 13:16:24 +000011
Clement Escoffier0630c6b2009-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 Escoffierec471f52008-10-14 09:43:32 +000018-->
Clement Escoffier7019ead2009-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 Escoffier0630c6b2009-07-19 16:25:18 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Clement Escoffier5ab0b442010-04-16 13:54:16 +000023 <version>1.2.1</version>
Clement Escoffier0630c6b2009-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 Escoffierd020a2b2010-05-16 14:57:29 +000030 <version>1.7.0-SNAPSHOT</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000031 <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 Escoffier14bbbb22010-04-12 06:27:58 +000052 <version>1.4.0</version>
Clement Escoffier0630c6b2009-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 Escoffierfe606902010-05-01 10:46:02 +000065 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Clement Escoffier0630c6b2009-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>
74 <Include-Resource> META-INF/LICENSE=LICENSE,
75 META-INF/LICENSE.asm=LICENSE.asm, META-INF/NOTICE=NOTICE,
76 xsd=src/main/resources </Include-Resource>
77 <Import-Package>!org.objectweb.asm.tree, *</Import-Package>
78 </instructions>
79 <obrRepository>NONE</obrRepository>
80 </configuration>
81 </plugin>
82 <plugin>
83 <groupId>org.codehaus.mojo</groupId>
84 <artifactId>rat-maven-plugin</artifactId>
85 <configuration>
86 <excludeSubProjects>false</excludeSubProjects>
87 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
88 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
89 <excludes>
90 <param>doc/*</param>
91 <param>maven-eclipse.xml</param>
92 <param>.checkstyle</param>
93 <param>.externalToolBuilders/*</param>
94 <param>LICENSE.asm</param>
95 </excludes>
96 </configuration>
97 </plugin>
98 <plugin>
99 <groupId>org.apache.maven.plugins</groupId>
100 <artifactId>maven-checkstyle-plugin</artifactId>
101 <configuration>
102 <enableRulesSummary>false</enableRulesSummary>
103 <violationSeverity>warning</violationSeverity>
104 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
105 </configuration>
106 </plugin>
107 </plugins>
108 </build>
109</project>