blob: 5147c12032e5e77e2497188bf33434d6e25198c3 [file] [log] [blame]
Clement Escoffiera7b8f7d2013-02-28 10:27:21 +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-->
19<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">
20 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
23 <version>1.2.1</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>
30 <version>1.7.0-SNAPSHOT</version>
31 <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.osgi</groupId>
41 <artifactId>org.osgi.core</artifactId>
42 <version>4.0.0</version>
43 </dependency>
44 <dependency>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>org.apache.felix.ipojo</artifactId>
47 <version>1.9.0-SNAPSHOT</version>
48 </dependency>
49 <dependency>
50 <groupId>asm</groupId>
51 <artifactId>asm-all</artifactId>
52 <version>3.3.1</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>${project.name}</Bundle-Name>
75 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
76 <Import-Package>
77 org.apache.felix.ipojo;version=1.8.1,
78 !org.objectweb.asm.tree, *</Import-Package>
79 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
80 <Bundle-Description> iPOJO Temporal Dependency Handler
81 </Bundle-Description>
82 <Bundle-DocURL>
83 http://felix.apache.org/site/temporal-service-dependency.html
84 </Bundle-DocURL>
85 <Include-Resource>
86 META-INF/LICENSE=LICENSE,
87 META-INF/LICENSE.asm=LICENSE.asm,
88 META-INF/NOTICE=NOTICE,
89 META-INF/DEPENDENCIES=DEPENDENCIES
90 </Include-Resource>
91 </instructions>
92 </configuration>
93 </plugin>
94 <plugin>
95 <groupId>org.apache.felix</groupId>
96 <artifactId>maven-ipojo-plugin</artifactId>
97 <version>1.6.0</version>
98 <executions>
99 <execution>
100 <goals>
101 <goal>ipojo-bundle</goal>
102 </goals>
103 <configuration>
104 <metadata>metadata.xml</metadata>
105 </configuration>
106 </execution>
107 </executions>
108 </plugin>
109 <plugin>
110 <groupId>org.codehaus.mojo</groupId>
111 <artifactId>rat-maven-plugin</artifactId>
112 <configuration>
113 <excludeSubProjects>false</excludeSubProjects>
114 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
115 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
116 <excludes>
117 <param>doc/**/*</param>
118 <param>maven-eclipse.xml</param>
119 <param>.checkstyle</param>
120 <param>.externalToolBuilders/*</param>
121 <param>LICENSE.asm</param>
122 </excludes>
123 </configuration>
124 </plugin>
125 <plugin>
126 <groupId>org.apache.maven.plugins</groupId>
127 <artifactId>maven-checkstyle-plugin</artifactId>
128 <configuration>
129 <enableRulesSummary>false</enableRulesSummary>
130 <violationSeverity>warning</violationSeverity>
131 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
132 </configuration>
133 </plugin>
134 </plugins>
135 </build>
136</project>