blob: c99ddac15be2c48792d3ea66453287c34417bba2 [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 Meschberger9eb99342010-03-26 12:54:51 +000032 <version>1.0.1-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 Meschberger9eb99342010-03-26 12:54:51 +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 Meschberger9eb99342010-03-26 12:54:51 +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 Meschberger9eb99342010-03-26 12:54:51 +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.*,
74 org.osgi.framework,
75 org.slf4j.*,
Felix Meschberger41313862010-03-23 12:46:55 +000076
77 <!-- plug into the traditional Felix shell -->
Felix Meschberger9d86a262010-03-18 21:35:20 +000078 org.apache.felix.shell;
Felix Meschberger41313862010-03-23 12:46:55 +000079
80 <!-- plug into the web console -->
81 javax.servlet.*;
82 org.apache.felix.webconsole;
Felix Meschbergere1b7ef82010-04-08 10:37:44 +000083
Felix Meschberger41313862010-03-23 12:46:55 +000084 <!-- support configuration -->
85 org.osgi.service.cm;
86 org.osgi.service.metatype;resolution:=optional
Felix Meschberger9d86a262010-03-18 21:35:20 +000087 </Import-Package>
88 <Private-Package>
Felix Meschberger76418902010-03-18 22:02:45 +000089 org.apache.felix.webconsole.plugins.memoryusage.*
Felix Meschberger9d86a262010-03-18 21:35:20 +000090 </Private-Package>
91 <Bundle-Activator>
Felix Meschberger76418902010-03-18 22:02:45 +000092 org.apache.felix.webconsole.plugins.memoryusage.internal.Activator
Felix Meschberger9d86a262010-03-18 21:35:20 +000093 </Bundle-Activator>
94 </instructions>
95 </configuration>
96 </plugin>
97 </plugins>
98 </build>
99 <dependencies>
100 <dependency>
101 <groupId>org.osgi</groupId>
102 <artifactId>org.osgi.core</artifactId>
Felix Meschberger76418902010-03-18 22:02:45 +0000103 <version>4.0.0</version>
104 <scope>provided</scope>
Felix Meschberger9d86a262010-03-18 21:35:20 +0000105 </dependency>
106 <dependency>
107 <groupId>org.osgi</groupId>
108 <artifactId>org.osgi.compendium</artifactId>
Felix Meschberger76418902010-03-18 22:02:45 +0000109 <version>4.0.0</version>
110 <scope>provided</scope>
Felix Meschberger9d86a262010-03-18 21:35:20 +0000111 </dependency>
112 <dependency>
113 <groupId>org.apache.felix</groupId>
114 <artifactId>org.apache.felix.shell</artifactId>
115 <version>1.0.0</version>
Felix Meschberger76418902010-03-18 22:02:45 +0000116 <scope>provided</scope>
Felix Meschberger9d86a262010-03-18 21:35:20 +0000117 </dependency>
118 <dependency>
119 <groupId>org.apache.felix</groupId>
120 <artifactId>org.apache.felix.webconsole</artifactId>
Felix Meschberger21d70d72010-04-02 15:18:32 +0000121 <version>3.0.0</version>
Felix Meschberger76418902010-03-18 22:02:45 +0000122 <scope>provided</scope>
Felix Meschberger9d86a262010-03-18 21:35:20 +0000123 </dependency>
124 <dependency>
125 <groupId>javax.servlet</groupId>
126 <artifactId>servlet-api</artifactId>
Felix Meschberger76418902010-03-18 22:02:45 +0000127 <version>2.3</version>
128 <scope>provided</scope>
Felix Meschberger9d86a262010-03-18 21:35:20 +0000129 </dependency>
130 <dependency>
131 <groupId>org.slf4j</groupId>
132 <artifactId>slf4j-api</artifactId>
Felix Meschberger76418902010-03-18 22:02:45 +0000133 <version>1.5.2</version>
134 <scope>provided</scope>
Felix Meschberger9d86a262010-03-18 21:35:20 +0000135 </dependency>
136 <dependency>
137 <groupId>junit</groupId>
138 <artifactId>junit</artifactId>
Felix Meschberger76418902010-03-18 22:02:45 +0000139 <version>3.8.1</version>
Felix Meschberger9d86a262010-03-18 21:35:20 +0000140 </dependency>
141 </dependencies>
142</project>