blob: 30d1da821a4b0d02b8d7460967de313632a9e8a5 [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-->
Clement Escoffierc5b8d122013-03-04 09:01:52 +000019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>felix-parent</artifactId>
24 <version>1.2.1</version>
25 <relativePath>../../../../pom/pom.xml</relativePath>
26 </parent>
27 <modelVersion>4.0.0</modelVersion>
28 <packaging>bundle</packaging>
29 <artifactId>org.apache.felix.ipojo.handler.temporal</artifactId>
Clement Escoffiera7b8f7d2013-02-28 10:27:21 +000030 <groupId>org.apache.felix</groupId>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000031 <version>1.7.0-SNAPSHOT</version>
32 <name>Apache Felix iPOJO Temporal Service Dependency Handler</name>
Clement Escoffiera7b8f7d2013-02-28 10:27:21 +000033
Clement Escoffierc5b8d122013-03-04 09:01:52 +000034 <description>
35 iPOJO extension to inject temporal service dependencies.
36 </description>
37 <url>http://felix.apache.org/site/temporal-service-dependency.html</url>
Clement Escoffiera7b8f7d2013-02-28 10:27:21 +000038
Clement Escoffierc5b8d122013-03-04 09:01:52 +000039 <dependencies>
40 <dependency>
41 <groupId>org.osgi</groupId>
42 <artifactId>org.osgi.core</artifactId>
43 <version>4.0.0</version>
44 </dependency>
45 <dependency>
46 <groupId>org.apache.felix</groupId>
47 <artifactId>org.apache.felix.ipojo</artifactId>
48 <version>1.9.0-SNAPSHOT</version>
49 </dependency>
50 <dependency>
51 <groupId>asm</groupId>
52 <artifactId>asm-all</artifactId>
53 <version>3.3.1</version>
54 <exclusions>
55 <exclusion>
56 <groupId>asm</groupId>
57 <artifactId>asm-tree</artifactId>
58 </exclusion>
59 </exclusions>
60 </dependency>
61 </dependencies>
62 <build>
63 <plugins>
64 <plugin>
65 <groupId>org.apache.felix</groupId>
66 <artifactId>maven-bundle-plugin</artifactId>
67 <version>1.4.3</version>
68 <extensions>true</extensions>
69 <configuration>
70 <instructions>
71 <Private-Package>
72 org.apache.felix.ipojo.handler.temporal,
73 org.objectweb.asm
74 </Private-Package>
75 <Bundle-Name>${project.name}</Bundle-Name>
76 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
77 <Import-Package>
78 org.apache.felix.ipojo;version=1.8.1,
79 !org.objectweb.asm.tree, *
80 </Import-Package>
81 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
82 <Bundle-Description>iPOJO Temporal Dependency Handler
83 </Bundle-Description>
84 <Bundle-DocURL>
85 http://felix.apache.org/site/temporal-service-dependency.html
86 </Bundle-DocURL>
87 <Include-Resource>
88 META-INF/LICENSE=LICENSE,
89 META-INF/LICENSE.asm=LICENSE.asm,
90 META-INF/NOTICE=NOTICE,
91 META-INF/DEPENDENCIES=DEPENDENCIES
92 </Include-Resource>
93 </instructions>
94 </configuration>
95 </plugin>
96 <plugin>
97 <groupId>org.apache.felix</groupId>
98 <artifactId>maven-ipojo-plugin</artifactId>
99 <version>1.6.0</version>
100 <executions>
101 <execution>
102 <goals>
103 <goal>ipojo-bundle</goal>
104 </goals>
105 <configuration>
106 <metadata>metadata.xml</metadata>
107 </configuration>
108 </execution>
109 </executions>
110 </plugin>
111 <plugin>
112 <groupId>org.codehaus.mojo</groupId>
113 <artifactId>rat-maven-plugin</artifactId>
114 <configuration>
115 <excludeSubProjects>false</excludeSubProjects>
116 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
117 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
118 <excludes>
119 <param>doc/**/*</param>
120 <param>maven-eclipse.xml</param>
121 <param>.checkstyle</param>
122 <param>.externalToolBuilders/*</param>
123 <param>LICENSE.asm</param>
124 </excludes>
125 </configuration>
126 </plugin>
127 <plugin>
128 <groupId>org.apache.maven.plugins</groupId>
129 <artifactId>maven-checkstyle-plugin</artifactId>
130 <configuration>
131 <enableRulesSummary>false</enableRulesSummary>
132 <violationSeverity>warning</violationSeverity>
133 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
134 </configuration>
135 </plugin>
136 <plugin>
137 <groupId>org.apache.maven.plugins</groupId>
138 <artifactId>maven-compiler-plugin</artifactId>
139 <configuration>
140 <target>1.5</target>
141 <source>1.5</source>
142 </configuration>
143 </plugin>
144 </plugins>
145 </build>
Clement Escoffiera7b8f7d2013-02-28 10:27:21 +0000146</project>