Richard S. Hall | b8eb1d2 | 2012-04-09 14:34:05 +0000 | [diff] [blame] | 1 | <!-- |
| 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 Pauls | 9abc244 | 2013-04-04 20:12:46 +0000 | [diff] [blame] | 32 | <version>1.1.0-SNAPSHOT</version> |
Richard S. Hall | b8eb1d2 | 2012-04-09 14:34:05 +0000 | [diff] [blame] | 33 | <artifactId>org.apache.felix.resolver</artifactId> |
Karl Pauls | f54f0e0 | 2013-04-03 15:42:18 +0000 | [diff] [blame] | 34 | <scm> |
Karl Pauls | 9abc244 | 2013-04-04 20:12:46 +0000 | [diff] [blame] | 35 | <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 Pauls | f54f0e0 | 2013-04-03 15:42:18 +0000 | [diff] [blame] | 38 | </scm> |
Richard S. Hall | b8eb1d2 | 2012-04-09 14:34:05 +0000 | [diff] [blame] | 39 | <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 Bosschaert | afa02dc | 2014-07-18 08:57:42 +0000 | [diff] [blame] | 45 | <dependency> |
| 46 | <groupId>junit</groupId> |
| 47 | <artifactId>junit</artifactId> |
| 48 | <version>4.11</version> |
| 49 | <scope>test</scope> |
| 50 | </dependency> |
Guillaume Nodet | b0d18ef | 2015-03-17 09:38:45 +0000 | [diff] [blame] | 51 | <dependency> |
| 52 | <groupId>org.apache.felix</groupId> |
| 53 | <artifactId>org.apache.felix.utils</artifactId> |
| 54 | <version>1.8.0</version> |
| 55 | <scope>test</scope> |
| 56 | </dependency> |
Richard S. Hall | b8eb1d2 | 2012-04-09 14:34:05 +0000 | [diff] [blame] | 57 | </dependencies> |
| 58 | <build> |
| 59 | <plugins> |
| 60 | <plugin> |
| 61 | <groupId>org.apache.maven.plugins</groupId> |
| 62 | <artifactId>maven-compiler-plugin</artifactId> |
| 63 | <configuration> |
A. J. David Bosschaert | afa02dc | 2014-07-18 08:57:42 +0000 | [diff] [blame] | 64 | <target>1.5</target> |
Richard S. Hall | b8eb1d2 | 2012-04-09 14:34:05 +0000 | [diff] [blame] | 65 | <source>1.5</source> |
| 66 | </configuration> |
| 67 | </plugin> |
| 68 | <plugin> |
Richard S. Hall | b8eb1d2 | 2012-04-09 14:34:05 +0000 | [diff] [blame] | 69 | <groupId>org.apache.felix</groupId> |
| 70 | <artifactId>maven-bundle-plugin</artifactId> |
| 71 | <version>2.3.7</version> |
| 72 | <extensions>true</extensions> |
| 73 | <configuration> |
| 74 | <instructions> |
| 75 | <_sources>true</_sources> |
| 76 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
Richard S. Hall | b8eb1d2 | 2012-04-09 14:34:05 +0000 | [diff] [blame] | 77 | <Bundle-Activator> |
| 78 | org.apache.felix.resolver.Activator |
| 79 | </Bundle-Activator> |
| 80 | <Private-Package>org.apache.*</Private-Package> |
| 81 | <Export-Package> |
| 82 | org.osgi.service.resolver.*;provide:=true |
| 83 | </Export-Package> |
| 84 | <Import-Package> |
| 85 | org.osgi.resource.*;provide:=true, * |
| 86 | </Import-Package> |
| 87 | </instructions> |
| 88 | </configuration> |
| 89 | </plugin> |
| 90 | <plugin> |
| 91 | <groupId>org.apache.rat</groupId> |
| 92 | <artifactId>apache-rat-plugin</artifactId> |
| 93 | <executions> |
| 94 | <execution> |
| 95 | <phase>verify</phase> |
| 96 | <goals> |
| 97 | <goal>check</goal> |
| 98 | </goals> |
| 99 | </execution> |
| 100 | </executions> |
| 101 | <configuration> |
| 102 | <includes> |
| 103 | <include>src/**</include> |
| 104 | </includes> |
| 105 | <excludes> |
| 106 | <exclude>src/**/packageinfo</exclude> |
Richard S. Hall | 4283d68 | 2013-04-03 15:11:01 +0000 | [diff] [blame] | 107 | <exclude>src/main/appended-resources/**</exclude> |
Guillaume Nodet | b0d18ef | 2015-03-17 09:38:45 +0000 | [diff] [blame] | 108 | <exclude>src/test/resources/resolution.json</exclude> |
Richard S. Hall | b8eb1d2 | 2012-04-09 14:34:05 +0000 | [diff] [blame] | 109 | </excludes> |
| 110 | </configuration> |
| 111 | </plugin> |
| 112 | </plugins> |
| 113 | </build> |
Richard S. Hall | b8eb1d2 | 2012-04-09 14:34:05 +0000 | [diff] [blame] | 114 | </project> |