blob: 40d4d6ea8828d2aeb924fac1ba15af1ac9490aa8 [file] [log] [blame]
Clement Escoffierec73deb2008-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 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 Escoffiercb5bca02008-10-14 11:52:24 +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 <artifactId>org.apache.felix.ipojo.handler.temporal</artifactId>
29 <groupId>org.apache.felix</groupId>
Clement Escoffierb77241d2009-01-28 10:54:37 +000030 <version>1.2.0</version>
Clement Escoffiercb5bca02008-10-14 11:52:24 +000031 <name>Apache Felix iPOJO Temporal Service Dependency Handler</name>
Clement Escoffiercb5bca02008-10-14 11:52:24 +000032 <dependencies>
33 <dependency>
34 <groupId>org.apache.felix</groupId>
35 <artifactId>org.osgi.core</artifactId>
Clement Escoffier31f25df2008-11-20 15:51:56 +000036 <version>1.0.1</version>
Clement Escoffiercb5bca02008-10-14 11:52:24 +000037 </dependency>
38 <dependency>
39 <groupId>org.apache.felix</groupId>
Clement Escoffiercb5bca02008-10-14 11:52:24 +000040 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier6e0a82a2009-01-28 10:44:07 +000041 <version>1.2.0</version>
Clement Escoffiercb5bca02008-10-14 11:52:24 +000042 </dependency>
Clement Escoffier88398212009-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 Escoffiercb5bca02008-10-14 11:52:24 +000054 </dependencies>
Clement Escoffiercb5bca02008-10-14 11:52:24 +000055 <build>
56 <plugins>
57 <plugin>
58 <groupId>org.apache.felix</groupId>
59 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000060 <version>1.4.3</version>
Clement Escoffiercb5bca02008-10-14 11:52:24 +000061 <extensions>true</extensions>
62 <configuration>
63 <instructions>
Clement Escoffier88398212009-01-19 08:50:50 +000064 <Private-Package>
65 org.apache.felix.ipojo.handler.temporal,
66 org.objectweb.asm
Clement Escoffiercb5bca02008-10-14 11:52:24 +000067 </Private-Package>
68 <Bundle-Name>${pom.name}</Bundle-Name>
Clement Escoffier8d888352008-12-10 12:29:41 +000069 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Clement Escoffier88398212009-01-19 08:50:50 +000070 <Import-Package>!org.objectweb.asm.tree, *</Import-Package>
Clement Escoffier31f25df2008-11-20 15:51:56 +000071 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
72 <Bundle-Description> iPOJO Temporal Dependency Handler
Clement Escoffiercb5bca02008-10-14 11:52:24 +000073 </Bundle-Description>
74 <Bundle-DocURL>
Clement Escoffier31f25df2008-11-20 15:51:56 +000075 http://felix.apache.org/site/temporal-service-dependency.html
Clement Escoffiercb5bca02008-10-14 11:52:24 +000076 </Bundle-DocURL>
Clement Escoffier31f25df2008-11-20 15:51:56 +000077 <Include-Resource> META-INF/LICENCE=LICENSE,
Clement Escoffier88398212009-01-19 08:50:50 +000078 META-INF/LICENCE.asm=LICENSE.asm,
79 META-INF/NOTICE=NOTICE
80 </Include-Resource>
Clement Escoffiercb5bca02008-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 Escoffier6e0a82a2009-01-28 10:44:07 +000087 <version>1.2.0</version>
Clement Escoffiercb5bca02008-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 Escoffier31f25df2008-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 Escoffiercb5bca02008-10-14 11:52:24 +0000124 </plugins>
125 </build>
Clement Escoffierb77241d2009-01-28 10:54:37 +0000126
127 <scm>
128 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.temporal-1.2.0</connection>
129 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.temporal-1.2.0</developerConnection>
130 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.temporal-1.2.0</url>
131 </scm>
Clement Escoffiercb5bca02008-10-14 11:52:24 +0000132</project>