Gert Vanthienen | 875d132 | 2009-08-17 06:17:31 +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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | |
| 4 | <!-- |
| 5 | |
| 6 | Licensed to the Apache Software Foundation (ASF) under one or more |
| 7 | contributor license agreements. See the NOTICE file distributed with |
| 8 | this work for additional information regarding copyright ownership. |
| 9 | The ASF licenses this file to You under the Apache License, Version 2.0 |
| 10 | (the "License"); you may not use this file except in compliance with |
| 11 | the License. You may obtain a copy of the License at |
| 12 | |
| 13 | http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | |
| 15 | Unless required by applicable law or agreed to in writing, software |
| 16 | distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | See the License for the specific language governing permissions and |
| 19 | limitations under the License. |
| 20 | --> |
| 21 | |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | |
| 24 | <parent> |
| 25 | <groupId>org.apache.felix.karaf.webconsole</groupId> |
| 26 | <artifactId>webconsole</artifactId> |
Guillaume Nodet | 8dda558 | 2010-06-14 10:04:28 +0000 | [diff] [blame^] | 27 | <version>1.7.0-SNAPSHOT</version> |
Gert Vanthienen | 875d132 | 2009-08-17 06:17:31 +0000 | [diff] [blame] | 28 | </parent> |
| 29 | |
| 30 | <groupId>org.apache.felix.karaf.webconsole</groupId> |
| 31 | <artifactId>org.apache.felix.karaf.webconsole.admin</artifactId> |
| 32 | <packaging>bundle</packaging> |
Guillaume Nodet | 8dda558 | 2010-06-14 10:04:28 +0000 | [diff] [blame^] | 33 | <version>1.7.0-SNAPSHOT</version> |
Gert Vanthienen | 875d132 | 2009-08-17 06:17:31 +0000 | [diff] [blame] | 34 | <name>Apache Felix Karaf :: Web Console :: Admin Plugin</name> |
| 35 | |
Guillaume Nodet | e73545e | 2009-09-18 20:25:06 +0000 | [diff] [blame] | 36 | <properties> |
| 37 | <appendedResourcesDirectory>${basedir}/../../etc/appended-resources</appendedResourcesDirectory> |
| 38 | </properties> |
| 39 | |
Gert Vanthienen | 875d132 | 2009-08-17 06:17:31 +0000 | [diff] [blame] | 40 | <dependencies> |
| 41 | <dependency> |
| 42 | <groupId>org.apache.felix</groupId> |
| 43 | <artifactId>org.osgi.core</artifactId> |
| 44 | <scope>provided</scope> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.apache.felix</groupId> |
| 48 | <artifactId>org.osgi.compendium</artifactId> |
| 49 | <scope>provided</scope> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.apache.felix</groupId> |
| 53 | <artifactId>org.apache.felix.webconsole</artifactId> |
| 54 | <scope>provided</scope> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>javax.servlet</groupId> |
| 58 | <artifactId>servlet-api</artifactId> |
| 59 | <scope>provided</scope> |
| 60 | </dependency> |
| 61 | <dependency> |
Guillaume Nodet | 1ebf8a5 | 2009-10-22 18:37:15 +0000 | [diff] [blame] | 62 | <groupId>org.apache.felix.karaf.admin</groupId> |
| 63 | <artifactId>org.apache.felix.karaf.admin.core</artifactId> |
Chris Custine | 97f1b85 | 2010-05-11 02:43:23 +0000 | [diff] [blame] | 64 | <version>${project.version}</version> |
Gert Vanthienen | 875d132 | 2009-08-17 06:17:31 +0000 | [diff] [blame] | 65 | <scope>provided</scope> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>commons-logging</groupId> |
| 69 | <artifactId>commons-logging</artifactId> |
| 70 | <scope>provided</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> |
Guillaume Nodet | f30a8bc | 2009-10-16 16:18:55 +0000 | [diff] [blame] | 79 | |
| 80 | <!-- Only needed while running the unit tests --> |
| 81 | <dependency> |
| 82 | <groupId>commons-fileupload</groupId> |
| 83 | <artifactId>commons-fileupload</artifactId> |
| 84 | <version>${commons.logging.version}</version> |
| 85 | <scope>test</scope> |
| 86 | </dependency> |
Gert Vanthienen | 875d132 | 2009-08-17 06:17:31 +0000 | [diff] [blame] | 87 | </dependencies> |
| 88 | |
| 89 | <build> |
| 90 | <plugins> |
| 91 | <plugin> |
| 92 | <groupId>org.apache.felix</groupId> |
| 93 | <artifactId>maven-bundle-plugin</artifactId> |
| 94 | <configuration> |
| 95 | <instructions> |
| 96 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
Chris Custine | 80977a9 | 2010-05-16 08:24:14 +0000 | [diff] [blame] | 97 | <Import-Package>!${project.artifactId}*,*</Import-Package> |
| 98 | <Export-Package>${project.artifactId}*;version=${project.version}</Export-Package> |
Gert Vanthienen | 875d132 | 2009-08-17 06:17:31 +0000 | [diff] [blame] | 99 | <Embed-Dependency> |
| 100 | <!-- Required for JSON data transfer --> |
| 101 | <!-- TODO: this needs to be put in a common place for reuse. --> |
| 102 | json |
| 103 | </Embed-Dependency> |
| 104 | </instructions> |
| 105 | </configuration> |
| 106 | </plugin> |
| 107 | </plugins> |
| 108 | </build> |
| 109 | |
| 110 | </project> |