blob: 17f670aaa6915ef0e201cf51278f653ac744efca [file] [log] [blame]
Clement Escoffier61ed2ab2008-10-14 11:53:43 +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 Escoffier61ed2ab2008-10-14 11:53:43 +000018-->
Clement Escoffier785fefd2009-01-28 10:54:37 +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 Escoffier0630c6b2009-07-19 16:25:18 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</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.handler.temporal</artifactId>
29 <groupId>org.apache.felix</groupId>
Clement Escoffierebdbd052009-07-21 19:32:31 +000030 <version>1.5.0-SNAPSHOT</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000031 <name>Apache Felix iPOJO Temporal Service Dependency Handler</name>
32
33 <description>
34 iPOJO extension to inject temporal service dependencies.
35 </description>
36 <url>http://felix.apache.org/site/temporal-service-dependency.html</url>
37
38 <dependencies>
39 <dependency>
40 <groupId>org.apache.felix</groupId>
41 <artifactId>org.osgi.core</artifactId>
42 <version>1.0.1</version>
43 </dependency>
44 <dependency>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier506ecfc2009-07-21 19:30:25 +000047 <version>1.4.0</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000048 </dependency>
49 <dependency>
50 <groupId>asm</groupId>
51 <artifactId>asm-all</artifactId>
52 <version>3.0</version>
53 <exclusions>
54 <exclusion>
55 <groupId>asm</groupId>
56 <artifactId>asm-tree</artifactId>
57 </exclusion>
58 </exclusions>
59 </dependency>
60 </dependencies>
61 <build>
62 <plugins>
63 <plugin>
64 <groupId>org.apache.felix</groupId>
65 <artifactId>maven-bundle-plugin</artifactId>
66 <version>1.4.3</version>
67 <extensions>true</extensions>
68 <configuration>
69 <instructions>
70 <Private-Package>
71 org.apache.felix.ipojo.handler.temporal,
72 org.objectweb.asm
73 </Private-Package>
74 <Bundle-Name>${pom.name}</Bundle-Name>
75 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
76 <Import-Package>!org.objectweb.asm.tree, *</Import-Package>
77 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
78 <Bundle-Description> iPOJO Temporal Dependency Handler
79 </Bundle-Description>
80 <Bundle-DocURL>
81 http://felix.apache.org/site/temporal-service-dependency.html
82 </Bundle-DocURL>
83 <Include-Resource> META-INF/LICENSE=LICENSE,
84 META-INF/LICENSE.asm=LICENSE.asm,
85 META-INF/NOTICE=NOTICE
86 </Include-Resource>
87 </instructions>
88 </configuration>
89 </plugin>
90 <plugin>
91 <groupId>org.apache.felix</groupId>
92 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier506ecfc2009-07-21 19:30:25 +000093 <version>1.4.0</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000094 <executions>
95 <execution>
96 <goals>
97 <goal>ipojo-bundle</goal>
98 </goals>
99 <configuration>
100 <metadata>metadata.xml</metadata>
101 </configuration>
102 </execution>
103 </executions>
104 </plugin>
105 <plugin>
106 <groupId>org.codehaus.mojo</groupId>
107 <artifactId>rat-maven-plugin</artifactId>
108 <configuration>
109 <excludeSubProjects>false</excludeSubProjects>
110 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
111 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
112 <excludes>
113 <param>doc/**/*</param>
114 <param>maven-eclipse.xml</param>
115 <param>.checkstyle</param>
116 <param>.externalToolBuilders/*</param>
117 <param>LICENSE.asm</param>
118 </excludes>
119 </configuration>
120 </plugin>
121 <plugin>
122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-checkstyle-plugin</artifactId>
124 <configuration>
125 <enableRulesSummary>false</enableRulesSummary>
126 <violationSeverity>warning</violationSeverity>
127 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
128 </configuration>
129 </plugin>
130 </plugins>
131 </build>
132</project>