blob: 1d6bd15261995bf3fdb8a2e719732fa1188f9d0d [file] [log] [blame]
Pierre De Ropcd1e58e2010-01-11 21:37:08 +00001<?xml version="1.0" encoding="UTF-8"?>
2 <!--
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 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
19 <parent>
20 <groupId>org.apache.felix</groupId>
21 <artifactId>felix</artifactId>
22 <version>1.0.4</version>
23 <relativePath>../../pom/pom.xml</relativePath>
24 </parent>
25 <modelVersion>4.0.0</modelVersion>
26 <packaging>bundle</packaging>
27 <name>Apache Felix Dependency Manager Runtime</name>
28 <version>3.0.0-SNAPSHOT</version>
29 <artifactId>org.apache.felix.dependencymanager.runtime</artifactId>
30
31 <repositories>
32 <repository>
33 <id>maven2-repository.dev.java.net</id>
34 <name>Java.net Maven 2 Repository</name>
35 <url>http://download.java.net/maven/2</url>
36 </repository>
37 </repositories>
38
39 <dependencies>
40 <dependency>
41 <groupId>org.osgi</groupId>
42 <artifactId>org.osgi.core</artifactId>
Pierre De Ropacc33ba2010-03-23 08:35:00 +000043 <version>4.1.0</version>
Pierre De Ropcd1e58e2010-01-11 21:37:08 +000044 </dependency>
45 <dependency>
46 <groupId>org.osgi</groupId>
47 <artifactId>org.osgi.compendium</artifactId>
Pierre De Ropacc33ba2010-03-23 08:35:00 +000048 <version>4.1.0</version>
Pierre De Ropcd1e58e2010-01-11 21:37:08 +000049 </dependency>
50 <dependency>
51 <groupId>${pom.groupId}</groupId>
52 <artifactId>org.apache.felix.dependencymanager</artifactId>
53 <version>3.0.0-SNAPSHOT</version>
54 </dependency>
55 </dependencies>
56
57 <build>
58 <plugins>
59 <plugin>
60 <groupId>org.apache.maven.plugins</groupId>
61 <artifactId>maven-compiler-plugin</artifactId>
62 <configuration>
63 <source>1.5</source>
64 <target>1.5</target>
65 </configuration>
66 </plugin>
67
68 <plugin>
69 <groupId>org.apache.felix</groupId>
70 <artifactId>maven-bundle-plugin</artifactId>
71 <version>1.4.0</version>
72 <extensions>true</extensions>
73 <configuration>
74 <instructions>
75 <Bundle-SymbolicName>org.apache.felix.dependencymanager.runtime</Bundle-SymbolicName>
76 <Bundle-Name>Apache Felix Dependency Manager Runtime</Bundle-Name>
77 <Bundle-Description>A bundle that loads components descriptors from started bundles</Bundle-Description>
78 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
79 <Private-Package>org.apache.felix.dm.runtime.*</Private-Package>
Pierre De Rop9957f9f2010-01-15 00:03:50 +000080 <Import-Package>org.apache.felix.dm;org.apache.felix.dm.dependencies;org.apache.felix.dm.service;version="[3.0.0,4.0.0)", *</Import-Package>
Pierre De Ropcd1e58e2010-01-11 21:37:08 +000081 <Bundle-Activator>org.apache.felix.dm.runtime.Activator</Bundle-Activator>
82 </instructions>
83 </configuration>
84 </plugin>
85 </plugins>
86 </build>
87 <scm>
88 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.dependencymanager-3.0.0</connection>
89 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.dependencymanager-3.0.0</developerConnection>
90 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.dependencymanager-3.0.0</url>
91 </scm>
92</project>