blob: eccb42b45f717e95b27377122d82a5981a1d6491 [file] [log] [blame]
Richard S. Hallb8eb1d22012-04-09 14:34:05 +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>
23 <version>2.1</version>
24 <relativePath>../pom/pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Apache Felix Resolver</name>
29 <description>
30 Provide OSGi resolver service.
31 </description>
Karl Pauls9abc2442013-04-04 20:12:46 +000032 <version>1.1.0-SNAPSHOT</version>
Richard S. Hallb8eb1d22012-04-09 14:34:05 +000033 <artifactId>org.apache.felix.resolver</artifactId>
Karl Paulsf54f0e02013-04-03 15:42:18 +000034 <scm>
Karl Pauls9abc2442013-04-04 20:12:46 +000035 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/resolver</connection>
36 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/resolver</developerConnection>
37 <url>http://svn.apache.org/repos/asf/felix/resolver</url>
Karl Paulsf54f0e02013-04-03 15:42:18 +000038 </scm>
Richard S. Hallb8eb1d22012-04-09 14:34:05 +000039 <dependencies>
40 <dependency>
41 <groupId>org.osgi</groupId>
42 <artifactId>org.osgi.core</artifactId>
43 <version>5.0.0</version>
44 </dependency>
A. J. David Bosschaertafa02dc2014-07-18 08:57:42 +000045 <dependency>
46 <groupId>junit</groupId>
47 <artifactId>junit</artifactId>
48 <version>4.11</version>
49 <scope>test</scope>
50 </dependency>
Richard S. Hallb8eb1d22012-04-09 14:34:05 +000051 </dependencies>
52 <build>
53 <plugins>
54 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-compiler-plugin</artifactId>
57 <configuration>
A. J. David Bosschaertafa02dc2014-07-18 08:57:42 +000058 <target>1.5</target>
Richard S. Hallb8eb1d22012-04-09 14:34:05 +000059 <source>1.5</source>
60 </configuration>
61 </plugin>
62 <plugin>
Richard S. Hallb8eb1d22012-04-09 14:34:05 +000063 <groupId>org.apache.felix</groupId>
64 <artifactId>maven-bundle-plugin</artifactId>
65 <version>2.3.7</version>
66 <extensions>true</extensions>
67 <configuration>
68 <instructions>
69 <_sources>true</_sources>
70 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Richard S. Hallb8eb1d22012-04-09 14:34:05 +000071 <Bundle-Activator>
72 org.apache.felix.resolver.Activator
73 </Bundle-Activator>
74 <Private-Package>org.apache.*</Private-Package>
75 <Export-Package>
76 org.osgi.service.resolver.*;provide:=true
77 </Export-Package>
78 <Import-Package>
79 org.osgi.resource.*;provide:=true, *
80 </Import-Package>
81 </instructions>
82 </configuration>
83 </plugin>
84 <plugin>
85 <groupId>org.apache.rat</groupId>
86 <artifactId>apache-rat-plugin</artifactId>
87 <executions>
88 <execution>
89 <phase>verify</phase>
90 <goals>
91 <goal>check</goal>
92 </goals>
93 </execution>
94 </executions>
95 <configuration>
96 <includes>
97 <include>src/**</include>
98 </includes>
99 <excludes>
100 <exclude>src/**/packageinfo</exclude>
Richard S. Hall4283d682013-04-03 15:11:01 +0000101 <exclude>src/main/appended-resources/**</exclude>
Richard S. Hallb8eb1d22012-04-09 14:34:05 +0000102 </excludes>
103 </configuration>
104 </plugin>
105 </plugins>
106 </build>
Richard S. Hallb8eb1d22012-04-09 14:34:05 +0000107</project>