Gert Vanthienen | 14110c1 | 2009-08-06 21:36:13 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | |
| 5 | <!-- |
| 6 | |
| 7 | Licensed to the Apache Software Foundation (ASF) under one or more |
| 8 | contributor license agreements. See the NOTICE file distributed with |
| 9 | this work for additional information regarding copyright ownership. |
| 10 | The ASF licenses this file to You under the Apache License, Version 2.0 |
| 11 | (the "License"); you may not use this file except in compliance with |
| 12 | the License. You may obtain a copy of the License at |
| 13 | |
| 14 | http://www.apache.org/licenses/LICENSE-2.0 |
| 15 | |
| 16 | Unless required by applicable law or agreed to in writing, software |
| 17 | distributed under the License is distributed on an "AS IS" BASIS, |
| 18 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 19 | See the License for the specific language governing permissions and |
| 20 | limitations under the License. |
| 21 | --> |
| 22 | |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | |
| 25 | <parent> |
Guillaume Nodet | 756cf8e | 2009-08-07 09:48:21 +0000 | [diff] [blame] | 26 | <groupId>org.apache.felix.karaf.webconsole</groupId> |
| 27 | <artifactId>webconsole</artifactId> |
| 28 | <version>1.2.0-SNAPSHOT</version> |
Gert Vanthienen | 14110c1 | 2009-08-06 21:36:13 +0000 | [diff] [blame] | 29 | </parent> |
| 30 | |
| 31 | <groupId>org.apache.felix.karaf.webconsole</groupId> |
Guillaume Nodet | 756cf8e | 2009-08-07 09:48:21 +0000 | [diff] [blame] | 32 | <artifactId>org.apache.felix.karaf.webconsole.features</artifactId> |
Gert Vanthienen | 14110c1 | 2009-08-06 21:36:13 +0000 | [diff] [blame] | 33 | <packaging>bundle</packaging> |
| 34 | <version>1.2.0-SNAPSHOT</version> |
Guillaume Nodet | 756cf8e | 2009-08-07 09:48:21 +0000 | [diff] [blame] | 35 | <name>Apache Felix Karaf :: Web Console :: Features Plugin</name> |
Gert Vanthienen | 14110c1 | 2009-08-06 21:36:13 +0000 | [diff] [blame] | 36 | |
| 37 | <dependencies> |
| 38 | <dependency> |
| 39 | <groupId>org.apache.felix</groupId> |
| 40 | <artifactId>org.osgi.core</artifactId> |
| 41 | <scope>provided</scope> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>org.apache.felix</groupId> |
| 45 | <artifactId>org.osgi.compendium</artifactId> |
| 46 | <scope>provided</scope> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.apache.felix</groupId> |
| 50 | <artifactId>org.apache.felix.webconsole</artifactId> |
| 51 | <scope>provided</scope> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>javax.servlet</groupId> |
| 55 | <artifactId>servlet-api</artifactId> |
| 56 | <scope>provided</scope> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>commons-logging</groupId> |
| 60 | <artifactId>commons-logging</artifactId> |
| 61 | <scope>provided</scope> |
| 62 | </dependency> |
| 63 | <dependency> |
Guillaume Nodet | e692a96 | 2009-08-07 09:55:51 +0000 | [diff] [blame] | 64 | <groupId>org.apache.felix.karaf.features</groupId> |
| 65 | <artifactId>org.apache.felix.karaf.features.core</artifactId> |
Gert Vanthienen | 14110c1 | 2009-08-06 21:36:13 +0000 | [diff] [blame] | 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.apache.servicemix.bundles</groupId> |
| 69 | <artifactId>org.apache.servicemix.bundles.junit</artifactId> |
| 70 | <scope>test</scope> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.json</groupId> |
| 74 | <artifactId>json</artifactId> |
| 75 | <version>20070829</version> |
| 76 | <scope>compile</scope> |
| 77 | <optional>true</optional> |
| 78 | </dependency> |
| 79 | </dependencies> |
| 80 | |
| 81 | <build> |
| 82 | <plugins> |
| 83 | <plugin> |
| 84 | <groupId>org.apache.felix</groupId> |
| 85 | <artifactId>maven-bundle-plugin</artifactId> |
| 86 | <configuration> |
| 87 | <instructions> |
Guillaume Nodet | 79f324e | 2009-08-10 16:38:17 +0000 | [diff] [blame] | 88 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
Guillaume Nodet | 756cf8e | 2009-08-07 09:48:21 +0000 | [diff] [blame] | 89 | <Export-Package>org.apache.felix.karaf.webconsole.features;version=${pom.version}</Export-Package> |
Gert Vanthienen | 14110c1 | 2009-08-06 21:36:13 +0000 | [diff] [blame] | 90 | <Embed-Dependency> |
| 91 | <!-- Required for JSON data transfer --> |
| 92 | <!-- TODO: this needs to be put in a common place for reuse. --> |
| 93 | json |
| 94 | </Embed-Dependency> |
| 95 | </instructions> |
| 96 | </configuration> |
| 97 | </plugin> |
| 98 | </plugins> |
| 99 | </build> |
| 100 | |
| 101 | </project> |