Carsten Ziegeler | 3a66ebc | 2007-07-11 10:46:36 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Marcel Offermans | ed131f1 | 2009-11-21 16:27:05 +0000 | [diff] [blame] | 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 |
Carsten Ziegeler | 3a66ebc | 2007-07-11 10:46:36 +0000 | [diff] [blame] | 9 | |
Marcel Offermans | ed131f1 | 2009-11-21 16:27:05 +0000 | [diff] [blame] | 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"> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 19 | <parent> |
| 20 | <groupId>org.apache.felix</groupId> |
| 21 | <artifactId>felix</artifactId> |
Clement Escoffier | a3a6204 | 2009-04-09 12:09:09 +0000 | [diff] [blame] | 22 | <version>1.0.4</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 23 | <relativePath>../pom/pom.xml</relativePath> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 24 | </parent> |
| 25 | <modelVersion>4.0.0</modelVersion> |
Richard S. Hall | 9cb48fc | 2007-05-31 14:49:19 +0000 | [diff] [blame] | 26 | <packaging>bundle</packaging> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 27 | <name>Apache Felix Dependency Manager</name> |
Marcel Offermans | a4d6dc9 | 2009-08-11 08:45:03 +0000 | [diff] [blame] | 28 | <version>3.0.0-SNAPSHOT</version> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 29 | <artifactId>org.apache.felix.dependencymanager</artifactId> |
| 30 | <dependencies> |
| 31 | <dependency> |
| 32 | <groupId>${pom.groupId}</groupId> |
Michael E. Rodriguez | 9d02237 | 2006-04-03 15:10:12 +0000 | [diff] [blame] | 33 | <artifactId>org.osgi.core</artifactId> |
Marcel Offermans | d4dbbb0 | 2009-01-28 20:48:16 +0000 | [diff] [blame] | 34 | <version>1.2.0</version> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 35 | <scope>provided</scope> |
| 36 | </dependency> |
Marcel Offermans | 56db6d3 | 2007-06-06 09:11:21 +0000 | [diff] [blame] | 37 | <dependency> |
| 38 | <groupId>${pom.groupId}</groupId> |
| 39 | <artifactId>org.osgi.compendium</artifactId> |
Marcel Offermans | d4dbbb0 | 2009-01-28 20:48:16 +0000 | [diff] [blame] | 40 | <version>1.2.0</version> |
Marcel Offermans | 56db6d3 | 2007-06-06 09:11:21 +0000 | [diff] [blame] | 41 | <scope>provided</scope> |
| 42 | </dependency> |
Marcel Offermans | ed131f1 | 2009-11-21 16:27:05 +0000 | [diff] [blame] | 43 | <dependency> |
| 44 | <groupId>org.ops4j.pax.exam</groupId> |
| 45 | <artifactId>pax-exam</artifactId> |
| 46 | <version>1.2.0</version> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.ops4j.pax.exam</groupId> |
| 50 | <artifactId>pax-exam-container-default</artifactId> |
| 51 | <version>1.2.0</version> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.ops4j.pax.exam</groupId> |
| 55 | <artifactId>pax-exam-junit</artifactId> |
| 56 | <version>1.2.0</version> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>junit</groupId> |
| 60 | <artifactId>junit</artifactId> |
| 61 | <version>4.7</version> |
| 62 | <scope>test</scope> |
| 63 | </dependency> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 64 | </dependencies> |
| 65 | <build> |
| 66 | <plugins> |
| 67 | <plugin> |
Richard S. Hall | 9cb48fc | 2007-05-31 14:49:19 +0000 | [diff] [blame] | 68 | <groupId>org.apache.felix</groupId> |
| 69 | <artifactId>maven-bundle-plugin</artifactId> |
Stuart McCulloch | 876ca72 | 2008-02-26 17:15:42 +0000 | [diff] [blame] | 70 | <version>1.4.0</version> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 71 | <extensions>true</extensions> |
| 72 | <configuration> |
Richard S. Hall | 9cb48fc | 2007-05-31 14:49:19 +0000 | [diff] [blame] | 73 | <instructions> |
| 74 | <Bundle-SymbolicName>org.apache.felix.dependencymanager</Bundle-SymbolicName> |
| 75 | <Bundle-Name>Apache Felix Dependency Manager</Bundle-Name> |
Marcel Offermans | ed131f1 | 2009-11-21 16:27:05 +0000 | [diff] [blame] | 76 | <Bundle-Description>A bundle that provides a run-time |
| 77 | service dependency manager.</Bundle-Description> |
Carsten Ziegeler | 90f0b9f | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 78 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Richard S. Hall | 9cb48fc | 2007-05-31 14:49:19 +0000 | [diff] [blame] | 79 | <Export-Package>org.apache.felix.dependencymanager</Export-Package> |
| 80 | <Import-Package>!org.apache.felix.dependencymanager,*</Import-Package> |
| 81 | </instructions> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 82 | </configuration> |
| 83 | </plugin> |
Marcel Offermans | ed131f1 | 2009-11-21 16:27:05 +0000 | [diff] [blame] | 84 | <plugin> |
| 85 | <artifactId>maven-compiler-plugin</artifactId> |
| 86 | <executions> |
| 87 | <execution> |
| 88 | <id>default-testCompile</id> |
| 89 | <configuration> |
| 90 | <source>1.5</source> |
| 91 | <target>1.5</target> |
| 92 | </configuration> |
| 93 | </execution> |
| 94 | </executions> |
| 95 | </plugin> |
| 96 | <plugin> |
| 97 | <groupId>org.ops4j.pax.exam</groupId> |
| 98 | <artifactId>maven-paxexam-plugin</artifactId> |
| 99 | <version>1.2.0</version> |
| 100 | <executions> |
| 101 | <execution> |
| 102 | <id>generate-config</id> |
| 103 | <goals> |
| 104 | <goal>generate-depends-file</goal> |
| 105 | </goals> |
| 106 | </execution> |
| 107 | </executions> |
| 108 | </plugin> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 109 | </plugins> |
| 110 | </build> |
Marcel Offermans | 0399688 | 2009-03-29 20:03:15 +0000 | [diff] [blame] | 111 | <scm> |
Marcel Offermans | a4d6dc9 | 2009-08-11 08:45:03 +0000 | [diff] [blame] | 112 | <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.dependencymanager-3.0.0</connection> |
| 113 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.dependencymanager-3.0.0</developerConnection> |
| 114 | <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.dependencymanager-3.0.0</url> |
Marcel Offermans | 0399688 | 2009-03-29 20:03:15 +0000 | [diff] [blame] | 115 | </scm> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 116 | </project> |