Marcel Offermans | 8908004 | 2009-11-21 17:59:33 +0000 | [diff] [blame^] | 1 | <?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</name> |
| 28 | <version>3.0.0-SNAPSHOT</version> |
| 29 | <artifactId>org.apache.felix.dependencymanager</artifactId> |
| 30 | <dependencies> |
| 31 | <dependency> |
| 32 | <groupId>${pom.groupId}</groupId> |
| 33 | <artifactId>org.osgi.core</artifactId> |
| 34 | <version>1.2.0</version> |
| 35 | <scope>provided</scope> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>${pom.groupId}</groupId> |
| 39 | <artifactId>org.osgi.compendium</artifactId> |
| 40 | <version>1.2.0</version> |
| 41 | <scope>provided</scope> |
| 42 | </dependency> |
| 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> |
| 64 | </dependencies> |
| 65 | <build> |
| 66 | <plugins> |
| 67 | <plugin> |
| 68 | <groupId>org.apache.felix</groupId> |
| 69 | <artifactId>maven-bundle-plugin</artifactId> |
| 70 | <version>1.4.0</version> |
| 71 | <extensions>true</extensions> |
| 72 | <configuration> |
| 73 | <instructions> |
| 74 | <Bundle-SymbolicName>org.apache.felix.dependencymanager</Bundle-SymbolicName> |
| 75 | <Bundle-Name>Apache Felix Dependency Manager</Bundle-Name> |
| 76 | <Bundle-Description>A bundle that provides a run-time |
| 77 | service dependency manager.</Bundle-Description> |
| 78 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
| 79 | <Export-Package>org.apache.felix.dependencymanager</Export-Package> |
| 80 | <Import-Package>!org.apache.felix.dependencymanager,*</Import-Package> |
| 81 | </instructions> |
| 82 | </configuration> |
| 83 | </plugin> |
| 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> |
| 109 | </plugins> |
| 110 | </build> |
| 111 | <scm> |
| 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> |
| 115 | </scm> |
| 116 | </project> |