blob: 37d13121b08abf0414bbdbc3199bc2bb9f6be56b [file] [log] [blame]
Clement Escoffierec471f52008-10-14 09:43:32 +00001<!--
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 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 Escoffier2bc41ef2008-10-14 08:40:07 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
23 <version>1.0.2</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 Escoffierf8e260b2009-01-19 11:18:58 +000030 <version>1.3.0-SNAPSHOT</version>
Clement Escoffier2bc41ef2008-10-14 08:40:07 +000031 <name>Apache Felix iPOJO Manipulator</name>
Clement Escoffier2bc41ef2008-10-14 08:40:07 +000032 <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 Escoffier0c296222009-01-19 11:17:05 +000047 <version>1.2.0</version>
Clement Escoffier2bc41ef2008-10-14 08:40:07 +000048 </dependency>
49 </dependencies>
50 <build>
51 <plugins>
52 <plugin>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier818e6922008-10-14 13:55:56 +000055 <version>1.4.3</version>
Clement Escoffier2bc41ef2008-10-14 08:40:07 +000056 <extensions>true</extensions>
57 <configuration>
58 <instructions>
59 <Bundle-Name>iPOJO Manipulator</Bundle-Name>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000060 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
61 <Bundle-Description> iPOJO Manipulator </Bundle-Description>
62 <Export-Package> org.apache.felix.ipojo.manipulator
Clement Escoffier2bc41ef2008-10-14 08:40:07 +000063 </Export-Package>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000064 <Private-Package> org.apache.felix.ipojo.manipulation,
Clement Escoffier2bc41ef2008-10-14 08:40:07 +000065 org.apache.felix.ipojo.manipulation.annotations,
Clement Escoffierb8fe1372008-11-20 15:51:56 +000066 org.apache.felix.ipojo.xml.parser, org.objectweb.asm,
67 org.objectweb.asm.commons </Private-Package>
68 <Include-Resource> META-INF/LICENCE=LICENSE,
69 META-INF/LICENCE.asm=LICENSE.asm, META-INF/NOTICE=NOTICE,
70 xsd=src/main/resources </Include-Resource>
Clement Escoffier2bc41ef2008-10-14 08:40:07 +000071 </instructions>
Clement Escoffiera6be7932009-01-14 14:07:17 +000072 <obrRepository>NONE</obrRepository>
Clement Escoffier2bc41ef2008-10-14 08:40:07 +000073 </configuration>
74 </plugin>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000075 <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 Escoffier2bc41ef2008-10-14 08:40:07 +0000100 </plugins>
101 </build>
Clement Escoffier5fc8a5e2008-05-18 22:03:26 +0000102</project>