blob: dbb1bcb1c4a0c146f25ebb6dc55a2fa087194ba8 [file] [log] [blame]
Clement Escoffierec73deb2008-10-14 11:53:43 +00001<!--
Clement Escoffierbfa74d02009-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 Escoffier0b93f382009-07-03 13:16:24 +00009
Clement Escoffierbfa74d02009-07-19 16:25:18 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier0b93f382009-07-03 13:16:24 +000011
Clement Escoffierbfa74d02009-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 Escoffierec73deb2008-10-14 11:53:43 +000018-->
Clement Escoffierb77241d2009-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 Escoffierbfa74d02009-07-19 16:25:18 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Clement Escoffier86215df2010-04-16 13:54:16 +000023 <version>1.2.1</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +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 Escoffier5a1b2312010-05-16 15:11:36 +000030 <version>1.7.0-SNAPSHOT</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000031 <name>Apache Felix iPOJO Temporal Service Dependency Handler</name>
Clement Escoffier52c5a0c2011-10-05 14:56:11 +000032
Clement Escoffierbfa74d02009-07-19 16:25:18 +000033 <description>
34 iPOJO extension to inject temporal service dependencies.
35 </description>
36 <url>http://felix.apache.org/site/temporal-service-dependency.html</url>
Clement Escoffier52c5a0c2011-10-05 14:56:11 +000037
Clement Escoffierbfa74d02009-07-19 16:25:18 +000038 <dependencies>
39 <dependency>
Clement Escoffier86215df2010-04-16 13:54:16 +000040 <groupId>org.osgi</groupId>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000041 <artifactId>org.osgi.core</artifactId>
Clement Escoffier86215df2010-04-16 13:54:16 +000042 <version>4.0.0</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000043 </dependency>
44 <dependency>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffiere058e862011-10-31 15:45:45 +000047 <version>1.9.0-SNAPSHOT</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000048 </dependency>
49 <dependency>
50 <groupId>asm</groupId>
51 <artifactId>asm-all</artifactId>
Clement Escoffier52c5a0c2011-10-05 14:56:11 +000052 <version>3.3.1</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000053 <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>
Clement Escoffier134b0062010-05-01 10:46:02 +000074 <Bundle-Name>${project.name}</Bundle-Name>
75 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Clement Escoffiere058e862011-10-31 15:45:45 +000076 <Import-Package>
77 org.apache.felix.ipojo;version=1.8.1,
78 !org.objectweb.asm.tree, *</Import-Package>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000079 <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>
Clement Escoffier52c5a0c2011-10-05 14:56:11 +000085 <Include-Resource>
Clement Escoffier1593ef52010-07-14 18:31:13 +000086 META-INF/LICENSE=LICENSE,
Clement Escoffierbfa74d02009-07-19 16:25:18 +000087 META-INF/LICENSE.asm=LICENSE.asm,
Clement Escoffier1593ef52010-07-14 18:31:13 +000088 META-INF/NOTICE=NOTICE,
89 META-INF/DEPENDENCIES=DEPENDENCIES
90 </Include-Resource>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000091 </instructions>
92 </configuration>
93 </plugin>
94 <plugin>
95 <groupId>org.apache.felix</groupId>
96 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier48a85df2010-05-16 15:10:39 +000097 <version>1.6.0</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000098 <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>