Pierre De Rop | cd1e58e | 2010-01-11 21:37:08 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Marcel Offermans | 89c60cc | 2011-04-27 10:14:59 +0000 | [diff] [blame] | 2 | <!-- |
Pierre De Rop | cd1e58e | 2010-01-11 21:37:08 +0000 | [diff] [blame] | 3 | Licensed to the Apache Software Foundation (ASF) under one or more |
| 4 | contributor license agreements. See the NOTICE file distributed with |
| 5 | this work for additional information regarding copyright ownership. |
| 6 | The ASF licenses this file to you under the Apache License, Version |
| 7 | 2.0 (the "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 Unless required by |
| 11 | applicable law or agreed to in writing, software distributed under |
| 12 | the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES |
| 13 | OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 14 | License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | --> |
Marcel Offermans | 89c60cc | 2011-04-27 10:14:59 +0000 | [diff] [blame] | 17 | <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"> |
| 18 | <modelVersion>4.0.0</modelVersion> |
| 19 | <parent> |
| 20 | <groupId>org.apache.felix</groupId> |
| 21 | <artifactId>felix-parent</artifactId> |
Pierre De Rop | 37ef651 | 2014-07-13 12:05:06 +0000 | [diff] [blame] | 22 | <version>1.2.0</version> |
Marcel Offermans | 89c60cc | 2011-04-27 10:14:59 +0000 | [diff] [blame] | 23 | <relativePath>../../pom/pom.xml</relativePath> |
| 24 | </parent> |
| 25 | <properties> |
| 26 | <osgi.version>4.2.0</osgi.version> |
| 27 | </properties> |
| 28 | <name>Apache Felix Dependency Manager Runtime</name> |
| 29 | <artifactId>org.apache.felix.dependencymanager.runtime</artifactId> |
Pierre De Rop | 8381de0 | 2014-07-13 15:26:29 +0000 | [diff] [blame] | 30 | <version>3.2.1-SNAPSHOT</version> |
Marcel Offermans | 89c60cc | 2011-04-27 10:14:59 +0000 | [diff] [blame] | 31 | <packaging>bundle</packaging> |
Pierre De Rop | 1c7ef23 | 2014-07-07 10:30:15 +0000 | [diff] [blame] | 32 | |
| 33 | <scm> |
Pierre De Rop | 8381de0 | 2014-07-13 15:26:29 +0000 | [diff] [blame] | 34 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/dependencymanager/runtime</connection> |
| 35 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/dependencymanager/runtime</developerConnection> |
| 36 | <url>http://svn.apache.org/repos/asf/felix/dependencymanager/runtime</url> |
Pierre De Rop | 4713947 | 2014-07-11 21:42:49 +0000 | [diff] [blame] | 37 | </scm> |
Pierre De Rop | 1c7ef23 | 2014-07-07 10:30:15 +0000 | [diff] [blame] | 38 | |
Marcel Offermans | 89c60cc | 2011-04-27 10:14:59 +0000 | [diff] [blame] | 39 | <dependencies> |
| 40 | <dependency> |
| 41 | <groupId>org.osgi</groupId> |
| 42 | <artifactId>org.osgi.core</artifactId> |
| 43 | <version>${osgi.version}</version> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.osgi</groupId> |
| 47 | <artifactId>org.osgi.compendium</artifactId> |
| 48 | <version>${osgi.version}</version> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>${pom.groupId}</groupId> |
| 52 | <artifactId>org.apache.felix.dependencymanager</artifactId> |
Pierre De Rop | 8381de0 | 2014-07-13 15:26:29 +0000 | [diff] [blame] | 53 | <version>3.2.1-SNAPSHOT</version> |
Marcel Offermans | 89c60cc | 2011-04-27 10:14:59 +0000 | [diff] [blame] | 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.json</groupId> |
| 57 | <artifactId>json</artifactId> |
| 58 | <scope>provided</scope> |
| 59 | <version>20070829</version> |
| 60 | </dependency> |
| 61 | </dependencies> |
| 62 | <build> |
Marcel Offermans | 9dec17b | 2011-04-29 15:40:23 +0000 | [diff] [blame] | 63 | <resources> |
| 64 | <resource> |
| 65 | <directory>.</directory> |
| 66 | <targetPath>META-INF</targetPath> |
| 67 | <includes> |
| 68 | <include>LICENSE*</include> |
| 69 | <include>NOTICE*</include> |
| 70 | <include>DEPENDENCIES*</include> |
Marcel Offermans | 5f8fb37 | 2011-05-01 10:57:57 +0000 | [diff] [blame] | 71 | <include>*.txt</include> |
Marcel Offermans | 9dec17b | 2011-04-29 15:40:23 +0000 | [diff] [blame] | 72 | </includes> |
| 73 | </resource> |
| 74 | </resources> |
Marcel Offermans | 89c60cc | 2011-04-27 10:14:59 +0000 | [diff] [blame] | 75 | <pluginManagement> |
| 76 | <plugins> |
| 77 | <plugin> |
| 78 | <groupId>org.apache.felix</groupId> |
| 79 | <artifactId>maven-bundle-plugin</artifactId> |
Pierre De Rop | 37ef651 | 2014-07-13 12:05:06 +0000 | [diff] [blame] | 80 | <version>2.3.4</version> |
Marcel Offermans | 89c60cc | 2011-04-27 10:14:59 +0000 | [diff] [blame] | 81 | <extensions>true</extensions> |
| 82 | </plugin> |
| 83 | </plugins> |
| 84 | </pluginManagement> |
| 85 | <plugins> |
| 86 | <plugin> |
| 87 | <groupId>org.apache.maven.plugins</groupId> |
| 88 | <artifactId>maven-compiler-plugin</artifactId> |
| 89 | <configuration> |
| 90 | <source>1.5</source> |
| 91 | <target>1.5</target> |
| 92 | </configuration> |
| 93 | </plugin> |
| 94 | <plugin> |
| 95 | <groupId>org.apache.felix</groupId> |
| 96 | <artifactId>maven-bundle-plugin</artifactId> |
| 97 | <configuration> |
| 98 | <instructions> |
| 99 | <Bundle-SymbolicName>org.apache.felix.dependencymanager.runtime</Bundle-SymbolicName> |
| 100 | <Bundle-Name>Apache Felix Dependency Manager Runtime</Bundle-Name> |
Marcel Offermans | c2664ea | 2011-04-28 22:39:29 +0000 | [diff] [blame] | 101 | <Bundle-Description>Loads component descriptors from active bundles.</Bundle-Description> |
Marcel Offermans | 89c60cc | 2011-04-27 10:14:59 +0000 | [diff] [blame] | 102 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Pierre De Rop | 93aa2f1 | 2011-04-27 11:47:42 +0000 | [diff] [blame] | 103 | <Private-Package>org.apache.felix.dm.runtime</Private-Package> |
Marcel Offermans | 89c60cc | 2011-04-27 10:14:59 +0000 | [diff] [blame] | 104 | <Import-Package>*</Import-Package> |
Marcel Offermans | 5ee369f | 2011-04-30 08:49:34 +0000 | [diff] [blame] | 105 | <Export-Package /> |
Pierre De Rop | 9e1070e | 2013-12-29 22:20:52 +0000 | [diff] [blame] | 106 | <Embed-Dependency>json;inline=org/json/**</Embed-Dependency> |
Marcel Offermans | 89c60cc | 2011-04-27 10:14:59 +0000 | [diff] [blame] | 107 | <Bundle-Activator>org.apache.felix.dm.runtime.Activator</Bundle-Activator> |
| 108 | </instructions> |
| 109 | </configuration> |
| 110 | </plugin> |
| 111 | </plugins> |
| 112 | </build> |
Pierre De Rop | cd1e58e | 2010-01-11 21:37:08 +0000 | [diff] [blame] | 113 | </project> |