blob: b5443888fc9106db373c7f73dee9e65a9a7a591f [file] [log] [blame]
Felix Meschberger9d86a262010-03-18 21:35:20 +00001<?xml version="1.0" encoding="ISO-8859-1"?>
2<!--
3 Licensed to the Apache Software Foundation (ASF) under one
4 or more contributor license agreements. See the NOTICE file
5 distributed with this work for additional information
6 regarding copyright ownership. The ASF licenses this file
7 to you under the Apache License, Version 2.0 (the
8 "License"); you may not use this file except in compliance
9 with the License. You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing,
14 software distributed under the License is distributed on an
15 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 KIND, either express or implied. See the License for the
17 specific language governing permissions and limitations
18 under the License.
19-->
20<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">
21
22 <modelVersion>4.0.0</modelVersion>
23 <parent>
Felix Meschberger76418902010-03-18 22:02:45 +000024 <groupId>org.apache.felix</groupId>
25 <artifactId>felix-parent</artifactId>
26 <version>1.2.0</version>
27 <relativePath>../../../pom/pom.xml</relativePath>
Felix Meschberger9d86a262010-03-18 21:35:20 +000028 </parent>
29
Felix Meschberger76418902010-03-18 22:02:45 +000030 <artifactId>org.apache.felix.webconsole.plugins.memoryusage</artifactId>
Felix Meschberger9d86a262010-03-18 21:35:20 +000031 <packaging>bundle</packaging>
Felix Meschberger96726482010-08-11 08:35:50 +000032 <version>1.0.3-SNAPSHOT</version>
Felix Meschberger9d86a262010-03-18 21:35:20 +000033
Felix Meschberger76418902010-03-18 22:02:45 +000034 <name>Apache Felix Web Console Memory Usage Plugin</name>
Felix Meschberger9d86a262010-03-18 21:35:20 +000035 <description>
36 Plugin providing plugins to the Felix Shell and Web Console to
37 observe the VMs memory use and cause try to get thread dumps etc.
38 </description>
39
40 <scm>
41 <connection>
Felix Meschberger96726482010-08-11 08:35:50 +000042 scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/memoryusage
Felix Meschberger9d86a262010-03-18 21:35:20 +000043 </connection>
44 <developerConnection>
Felix Meschberger96726482010-08-11 08:35:50 +000045 scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/memoryusage
Felix Meschberger9d86a262010-03-18 21:35:20 +000046 </developerConnection>
47 <url>
Felix Meschberger96726482010-08-11 08:35:50 +000048 http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/memoryusage
Felix Meschberger9d86a262010-03-18 21:35:20 +000049 </url>
50 </scm>
51
52 <build>
53 <plugins>
54 <plugin>
Felix Meschberger92c2e952010-03-19 11:56:55 +000055 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-compiler-plugin</artifactId>
57 <configuration>
58 <source>1.5</source>
59 <target>1.5</target>
60 </configuration>
61 </plugin>
62 <plugin>
Felix Meschberger9d86a262010-03-18 21:35:20 +000063 <groupId>org.apache.felix</groupId>
64 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschberger2e5238f2010-03-26 09:35:41 +000065 <version>2.0.1</version>
Felix Meschberger9d86a262010-03-18 21:35:20 +000066 <extensions>true</extensions>
67 <configuration>
68 <instructions>
Felix Meschbergere1b7ef82010-04-08 10:37:44 +000069 <Bundle-SymbolicName>
70 ${project.artifactId}
71 </Bundle-SymbolicName>
Felix Meschberger9d86a262010-03-18 21:35:20 +000072 <Import-Package>
73 javax.management.*,
Felix Meschbergerb69b26f2010-04-08 10:39:22 +000074 org.osgi.framework
75 </Import-Package>
76 <DynamicImport-Package>
77 <!-- logging -->
78 org.osgi.service.log;version="[1.3,2)",
Felix Meschberger41313862010-03-23 12:46:55 +000079
Felix Meschbergerb69b26f2010-04-08 10:39:22 +000080 <!-- configuration -->
81 org.osgi.service.cm;version="[1.2,2)",
82 org.osgi.service.metatype;version="[1.1,2)",
Felix Meschberger41313862010-03-23 12:46:55 +000083
84 <!-- plug into the web console -->
Felix Meschbergerb69b26f2010-04-08 10:39:22 +000085 javax.servlet;
86 javax.servlet.http;version="[2.3,3)",
Felix Meschberger388cb2f2010-08-03 05:59:09 +000087 org.apache.felix.webconsole;version="[3.0,3.2)",
Felix Meschbergere1b7ef82010-04-08 10:37:44 +000088
Felix Meschbergerb69b26f2010-04-08 10:39:22 +000089 <!-- plug into the traditional Felix shell -->
90 org.apache.felix.shell;version="[1.0,1.1)"
91 </DynamicImport-Package>
Felix Meschberger9d86a262010-03-18 21:35:20 +000092 <Private-Package>
Felix Meschberger76418902010-03-18 22:02:45 +000093 org.apache.felix.webconsole.plugins.memoryusage.*
Felix Meschberger9d86a262010-03-18 21:35:20 +000094 </Private-Package>
95 <Bundle-Activator>
Felix Meschberger76418902010-03-18 22:02:45 +000096 org.apache.felix.webconsole.plugins.memoryusage.internal.Activator
Felix Meschberger9d86a262010-03-18 21:35:20 +000097 </Bundle-Activator>
98 </instructions>
99 </configuration>
100 </plugin>
101 </plugins>
102 </build>
103 <dependencies>
104 <dependency>
105 <groupId>org.osgi</groupId>
106 <artifactId>org.osgi.core</artifactId>
Felix Meschberger76418902010-03-18 22:02:45 +0000107 <version>4.0.0</version>
108 <scope>provided</scope>
Felix Meschberger9d86a262010-03-18 21:35:20 +0000109 </dependency>
110 <dependency>
111 <groupId>org.osgi</groupId>
112 <artifactId>org.osgi.compendium</artifactId>
Felix Meschberger76418902010-03-18 22:02:45 +0000113 <version>4.0.0</version>
114 <scope>provided</scope>
Felix Meschberger9d86a262010-03-18 21:35:20 +0000115 </dependency>
116 <dependency>
117 <groupId>org.apache.felix</groupId>
118 <artifactId>org.apache.felix.shell</artifactId>
119 <version>1.0.0</version>
Felix Meschberger76418902010-03-18 22:02:45 +0000120 <scope>provided</scope>
Felix Meschberger9d86a262010-03-18 21:35:20 +0000121 </dependency>
122 <dependency>
123 <groupId>org.apache.felix</groupId>
124 <artifactId>org.apache.felix.webconsole</artifactId>
Felix Meschberger21d70d72010-04-02 15:18:32 +0000125 <version>3.0.0</version>
Felix Meschberger76418902010-03-18 22:02:45 +0000126 <scope>provided</scope>
Felix Meschberger9d86a262010-03-18 21:35:20 +0000127 </dependency>
128 <dependency>
129 <groupId>javax.servlet</groupId>
130 <artifactId>servlet-api</artifactId>
Felix Meschberger76418902010-03-18 22:02:45 +0000131 <version>2.3</version>
132 <scope>provided</scope>
Felix Meschberger9d86a262010-03-18 21:35:20 +0000133 </dependency>
Felix Meschberger9d86a262010-03-18 21:35:20 +0000134 </dependencies>
135</project>