blob: b20eec2e8fbe564e394f0f0763bfe34b2b60364c [file] [log] [blame]
Clement Escoffier57ea4e62008-10-14 11:39:00 +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 Escoffierbe08ded2009-01-28 10:49:54 +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/maven-v4_0_0.xsd">
Clement Escoffier818b00d2008-10-14 11:37:34 +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 <name>Apache Felix iPOJO Extender Pattern Handler</name>
Clement Escoffier31f25df2008-11-20 15:51:56 +000029 <artifactId> org.apache.felix.ipojo.handler.extender </artifactId>
Clement Escoffier818b00d2008-10-14 11:37:34 +000030 <groupId>org.apache.felix</groupId>
Clement Escoffierbe08ded2009-01-28 10:49:54 +000031 <version>1.2.0</version>
Clement Escoffier818b00d2008-10-14 11:37:34 +000032 <dependencies>
33 <dependency>
34 <groupId>org.apache.felix</groupId>
35 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier6e0a82a2009-01-28 10:44:07 +000036 <version>1.2.0</version>
Clement Escoffier818b00d2008-10-14 11:37:34 +000037 </dependency>
38 <dependency>
39 <groupId>org.apache.felix</groupId>
Clement Escoffier818b00d2008-10-14 11:37:34 +000040 <artifactId>org.osgi.core</artifactId>
Clement Escoffier31f25df2008-11-20 15:51:56 +000041 <version>1.0.1</version>
Clement Escoffier818b00d2008-10-14 11:37:34 +000042 </dependency>
Clement Escoffier818b00d2008-10-14 11:37:34 +000043 </dependencies>
Clement Escoffier818b00d2008-10-14 11:37:34 +000044 <build>
45 <plugins>
46 <plugin>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>maven-bundle-plugin</artifactId>
49 <extensions>true</extensions>
50 <configuration>
51 <instructions>
Clement Escoffier31f25df2008-11-20 15:51:56 +000052 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
53 <Bundle-Description> iPOJO Extender Pattern Handler
Clement Escoffier818b00d2008-10-14 11:37:34 +000054 </Bundle-Description>
55 <Bundle-DocURL>
Clement Escoffier31f25df2008-11-20 15:51:56 +000056 http://felix.apache.org/site/extender-pattern-handler.html
Clement Escoffier818b00d2008-10-14 11:37:34 +000057 </Bundle-DocURL>
Clement Escoffier31f25df2008-11-20 15:51:56 +000058 <Private-Package> org.apache.felix.ipojo.handler.extender
Clement Escoffier818b00d2008-10-14 11:37:34 +000059 </Private-Package>
Clement Escoffier8d888352008-12-10 12:29:41 +000060 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Clement Escoffier818b00d2008-10-14 11:37:34 +000061 <Bundle-Name>${pom.name}</Bundle-Name>
Clement Escoffier31f25df2008-11-20 15:51:56 +000062 <Include-Resource> META-INF/LICENCE=LICENSE,
63 META-INF/NOTICE=NOTICE </Include-Resource>
Clement Escoffier818b00d2008-10-14 11:37:34 +000064 </instructions>
65 </configuration>
66 </plugin>
67 <plugin>
68 <groupId>org.apache.felix</groupId>
69 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier6e0a82a2009-01-28 10:44:07 +000070 <version>1.2.0</version>
Clement Escoffier818b00d2008-10-14 11:37:34 +000071 <executions>
72 <execution>
73 <goals>
74 <goal>ipojo-bundle</goal>
75 </goals>
76 <configuration>
77 <metadata>metadata.xml</metadata>
78 </configuration>
79 </execution>
80 </executions>
81 </plugin>
Clement Escoffier31f25df2008-11-20 15:51:56 +000082 <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>
Clement Escoffier818b00d2008-10-14 11:37:34 +0000107 </plugins>
108 </build>
Clement Escoffierbe08ded2009-01-28 10:49:54 +0000109
110 <scm>
111 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.extender-1.2.0</connection>
112 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.extender-1.2.0</developerConnection>
113 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.extender-1.2.0</url>
114 </scm>
Clement Escoffier818b00d2008-10-14 11:37:34 +0000115</project>