blob: 5d80b4ab7c6ca822472babc658eaaee3196734f1 [file] [log] [blame]
Clement Escoffier61ed2ab2008-10-14 11:53:43 +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 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 Escoffier0f526b62008-10-14 11:52:24 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
Clement Escoffiera3a62042009-04-09 12:09:09 +000023 <version>1.0.4</version>
Clement Escoffier0f526b62008-10-14 11:52:24 +000024 <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 Escoffierc6995392009-01-28 10:55:04 +000030 <version>1.3.0-SNAPSHOT</version>
Clement Escoffier0f526b62008-10-14 11:52:24 +000031 <name>Apache Felix iPOJO Temporal Service Dependency Handler</name>
Clement Escoffier0f526b62008-10-14 11:52:24 +000032 <dependencies>
33 <dependency>
34 <groupId>org.apache.felix</groupId>
35 <artifactId>org.osgi.core</artifactId>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000036 <version>1.0.1</version>
Clement Escoffier0f526b62008-10-14 11:52:24 +000037 </dependency>
38 <dependency>
39 <groupId>org.apache.felix</groupId>
Clement Escoffier0f526b62008-10-14 11:52:24 +000040 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffierb6d05612009-01-28 15:45:23 +000041 <version>1.3.0-SNAPSHOT</version>
Clement Escoffier0f526b62008-10-14 11:52:24 +000042 </dependency>
Clement Escoffierf71a7bc2009-01-19 08:50:50 +000043 <dependency>
44 <groupId>asm</groupId>
45 <artifactId>asm-all</artifactId>
46 <version>3.0</version>
47 <exclusions>
48 <exclusion>
49 <groupId>asm</groupId>
50 <artifactId>asm-tree</artifactId>
51 </exclusion>
52 </exclusions>
53 </dependency>
Clement Escoffier0f526b62008-10-14 11:52:24 +000054 </dependencies>
Clement Escoffier0f526b62008-10-14 11:52:24 +000055 <build>
56 <plugins>
57 <plugin>
58 <groupId>org.apache.felix</groupId>
59 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier818e6922008-10-14 13:55:56 +000060 <version>1.4.3</version>
Clement Escoffier0f526b62008-10-14 11:52:24 +000061 <extensions>true</extensions>
62 <configuration>
63 <instructions>
Clement Escoffierf71a7bc2009-01-19 08:50:50 +000064 <Private-Package>
65 org.apache.felix.ipojo.handler.temporal,
66 org.objectweb.asm
Clement Escoffier0f526b62008-10-14 11:52:24 +000067 </Private-Package>
68 <Bundle-Name>${pom.name}</Bundle-Name>
Clement Escoffier23e4adf2008-12-10 12:29:41 +000069 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Clement Escoffierf71a7bc2009-01-19 08:50:50 +000070 <Import-Package>!org.objectweb.asm.tree, *</Import-Package>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000071 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
72 <Bundle-Description> iPOJO Temporal Dependency Handler
Clement Escoffier0f526b62008-10-14 11:52:24 +000073 </Bundle-Description>
74 <Bundle-DocURL>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000075 http://felix.apache.org/site/temporal-service-dependency.html
Clement Escoffier0f526b62008-10-14 11:52:24 +000076 </Bundle-DocURL>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000077 <Include-Resource> META-INF/LICENCE=LICENSE,
Clement Escoffierf71a7bc2009-01-19 08:50:50 +000078 META-INF/LICENCE.asm=LICENSE.asm,
79 META-INF/NOTICE=NOTICE
80 </Include-Resource>
Clement Escoffier0f526b62008-10-14 11:52:24 +000081 </instructions>
82 </configuration>
83 </plugin>
84 <plugin>
85 <groupId>org.apache.felix</groupId>
86 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierb6d05612009-01-28 15:45:23 +000087 <version>1.3.0-SNAPSHOT</version>
Clement Escoffier0f526b62008-10-14 11:52:24 +000088 <executions>
89 <execution>
90 <goals>
91 <goal>ipojo-bundle</goal>
92 </goals>
93 <configuration>
94 <metadata>metadata.xml</metadata>
95 </configuration>
96 </execution>
97 </executions>
98 </plugin>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000099 <plugin>
100 <groupId>org.codehaus.mojo</groupId>
101 <artifactId>rat-maven-plugin</artifactId>
102 <configuration>
103 <excludeSubProjects>false</excludeSubProjects>
104 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
105 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
106 <excludes>
107 <param>doc/**/*</param>
108 <param>maven-eclipse.xml</param>
109 <param>.checkstyle</param>
110 <param>.externalToolBuilders/*</param>
111 <param>LICENSE.asm</param>
112 </excludes>
113 </configuration>
114 </plugin>
115 <plugin>
116 <groupId>org.apache.maven.plugins</groupId>
117 <artifactId>maven-checkstyle-plugin</artifactId>
118 <configuration>
119 <enableRulesSummary>false</enableRulesSummary>
120 <violationSeverity>warning</violationSeverity>
121 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
122 </configuration>
123 </plugin>
Clement Escoffier0f526b62008-10-14 11:52:24 +0000124 </plugins>
125 </build>
Clement Escoffier0f526b62008-10-14 11:52:24 +0000126</project>