A. J. David Bosschaert | 8b3069d | 2014-02-04 14:13:44 +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 Bundle Repository - OSGi CT integration</name> |
| 29 | <description> |
| 30 | Bundle repository service OSGi CT integration. To run a Repository implementation in the |
| 31 | OSGi CT, a small integration layer needs to be provided by the implementation that knows |
| 32 | how to prime the repository with the provided repository xml file. |
| 33 | </description> |
| 34 | <artifactId>org.apache.felix.bundlerepository.osgi-ct</artifactId> |
A. J. David Bosschaert | cd4f116 | 2014-09-24 12:09:19 +0000 | [diff] [blame] | 35 | <version>2.0.3-SNAPSHOT</version> |
A. J. David Bosschaert | 8b3069d | 2014-02-04 14:13:44 +0000 | [diff] [blame] | 36 | <scm> |
| 37 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/bundlerepository.osgi-ct</connection> |
| 38 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/bundlerepository.osgi-ct</developerConnection> |
| 39 | <url>http://svn.apache.org/repos/asf/felix/trunk/bundlerepository.osgi-ct</url> |
| 40 | </scm> |
| 41 | <dependencies> |
| 42 | <dependency> |
| 43 | <groupId>org.osgi</groupId> |
| 44 | <artifactId>org.osgi.core</artifactId> |
| 45 | <version>5.0.0</version> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.osgi</groupId> |
| 49 | <artifactId>org.osgi.compendium</artifactId> |
| 50 | <version>5.0.0</version> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>${project.groupId}</groupId> |
| 54 | <artifactId>org.apache.felix.bundlerepository</artifactId> |
| 55 | <version>${project.version}</version> |
| 56 | </dependency> |
| 57 | </dependencies> |
| 58 | <build> |
| 59 | <plugins> |
| 60 | <plugin> |
| 61 | <groupId>org.apache.maven.plugins</groupId> |
| 62 | <artifactId>maven-compiler-plugin</artifactId> |
| 63 | <configuration> |
| 64 | <target>1.5</target> |
| 65 | <source>1.5</source> |
| 66 | </configuration> |
| 67 | </plugin> |
| 68 | |
| 69 | <plugin> |
| 70 | <groupId>org.apache.felix</groupId> |
| 71 | <artifactId>maven-bundle-plugin</artifactId> |
| 72 | <version>2.3.4</version> |
| 73 | <extensions>true</extensions> |
| 74 | <configuration> |
| 75 | <instructions> |
| 76 | <Export-Package></Export-Package> |
| 77 | <Private-Package>org.apache.felix.bundlerepository.osgict</Private-Package> |
| 78 | <Bundle-Activator>org.apache.felix.bundlerepository.osgict.Activator</Bundle-Activator> |
| 79 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 80 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
| 81 | </instructions> |
| 82 | </configuration> |
| 83 | </plugin> |
| 84 | <plugin> |
| 85 | <groupId>org.apache.rat</groupId> |
| 86 | <artifactId>apache-rat-plugin</artifactId> |
| 87 | <configuration> |
| 88 | <excludeSubProjects>false</excludeSubProjects> |
| 89 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 90 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 91 | <excludes> |
| 92 | <param>doc/*</param> |
| 93 | <param>maven-eclipse.xml</param> |
| 94 | <param>.checkstyle</param> |
| 95 | <param>.externalToolBuilders/*</param> |
| 96 | </excludes> |
| 97 | </configuration> |
| 98 | </plugin> |
| 99 | </plugins> |
| 100 | </build> |
| 101 | </project> |