blob: 084b8a5e26cc51153ddc35b780f1d1c8de9a03ef [file] [log] [blame]
Carsten Ziegeler11162a02015-02-16 09:51:22 +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>
Carsten Ziegelere6648272015-08-06 03:37:20 +000023 <version>3</version>
Carsten Ziegeler11162a02015-02-16 09:51:22 +000024 <relativePath />
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Apache Felix Declarative Services Compatibility Extension</name>
29 <description>
30 Extensions of the DS Implementation to provide compatibility with API from older Apache Felix DS implementations.
31 </description>
32 <artifactId>org.apache.felix.scr.compat</artifactId>
Carsten Ziegeler0b69bb62015-09-16 08:21:15 +000033 <version>1.0.3-SNAPSHOT</version>
Carsten Ziegeler11162a02015-02-16 09:51:22 +000034 <scm>
Carsten Ziegeler0b69bb62015-09-16 08:21:15 +000035 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/scr-compat</connection>
36 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/scr-compat</developerConnection>
37 <url>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/scr-compat</url>
Carsten Ziegeler11162a02015-02-16 09:51:22 +000038 </scm>
39
40 <dependencies>
41 <dependency>
42 <groupId>org.osgi</groupId>
Carsten Ziegelere6648272015-08-06 03:37:20 +000043 <artifactId>osgi.core</artifactId>
Carsten Ziegeler11162a02015-02-16 09:51:22 +000044 <version>6.0.0</version>
45 <scope>provided</scope>
46 </dependency>
47 <dependency>
48 <groupId>org.osgi</groupId>
Carsten Ziegelere6648272015-08-06 03:37:20 +000049 <artifactId>osgi.annotation</artifactId>
50 <version>6.0.1</version>
Carsten Ziegeler11162a02015-02-16 09:51:22 +000051 <scope>provided</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.osgi</groupId>
Carsten Ziegelere6648272015-08-06 03:37:20 +000055 <artifactId>osgi.cmpn</artifactId>
56 <version>6.0.0</version>
Carsten Ziegeler11162a02015-02-16 09:51:22 +000057 <scope>provided</scope>
58 </dependency>
59 <dependency>
60 <groupId>org.apache.felix</groupId>
61 <artifactId>org.apache.felix.scr</artifactId>
Carsten Ziegeler06921b32015-09-16 07:13:06 +000062 <version>2.0.0</version>
Carsten Ziegeler11162a02015-02-16 09:51:22 +000063 <scope>provided</scope>
64 </dependency>
65 </dependencies>
66 <build>
67 <plugins>
68 <plugin>
69 <groupId>org.apache.felix</groupId>
70 <artifactId>maven-bundle-plugin</artifactId>
71 <version>2.5.3</version>
72 <extensions>true</extensions>
73 <configuration>
74 <instructions>
75 <Bundle-Category>osgi</Bundle-Category>
76 <Bundle-DocURL>http://felix.apache.org/site/apache-felix-service-component-runtime.html</Bundle-DocURL>
77 <Bundle-Activator>org.apache.felix.scr.impl.compat.Activator</Bundle-Activator>
78 <Export-Package>org.apache.felix.scr;version=1.8.1;provide:=true</Export-Package>
79 </instructions>
80 </configuration>
81 </plugin>
Carsten Ziegeler11162a02015-02-16 09:51:22 +000082 <plugin>
83 <groupId>org.apache.maven.plugins</groupId>
Carsten Ziegelerc24d12e2015-09-16 08:20:24 +000084 <artifactId>maven-release-plugin</artifactId>
85 <version>2.5.2</version>
86 </plugin>
87 <plugin>
88 <groupId>org.apache.maven.plugins</groupId>
Carsten Ziegeler11162a02015-02-16 09:51:22 +000089 <artifactId>maven-javadoc-plugin</artifactId>
90 <configuration>
91 <encoding>${project.build.sourceEncoding}</encoding>
92 <excludePackageNames>*.impl</excludePackageNames>
93 </configuration>
94 </plugin>
95 </plugins>
96 </build>
97</project>