blob: c12bbe7f8171897b5a57404cd7acdfc3148c07e1 [file] [log] [blame]
Felix Meschbergere82e6652010-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 Meschberger03810b02010-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 Meschbergere82e6652010-03-18 21:35:20 +000028 </parent>
29
Felix Meschberger03810b02010-03-18 22:02:45 +000030 <artifactId>org.apache.felix.webconsole.plugins.memoryusage</artifactId>
Felix Meschbergere82e6652010-03-18 21:35:20 +000031 <packaging>bundle</packaging>
Felix Meschbergerf12aa032010-03-26 12:54:51 +000032 <version>1.0.1-SNAPSHOT</version>
Felix Meschbergere82e6652010-03-18 21:35:20 +000033
Felix Meschberger03810b02010-03-18 22:02:45 +000034 <name>Apache Felix Web Console Memory Usage Plugin</name>
Felix Meschbergere82e6652010-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 Meschbergerf12aa032010-03-26 12:54:51 +000042 scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/memoryusage
Felix Meschbergere82e6652010-03-18 21:35:20 +000043 </connection>
44 <developerConnection>
Felix Meschbergerf12aa032010-03-26 12:54:51 +000045 scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/memoryusage
Felix Meschbergere82e6652010-03-18 21:35:20 +000046 </developerConnection>
47 <url>
Felix Meschbergerf12aa032010-03-26 12:54:51 +000048 http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/memoryusage
Felix Meschbergere82e6652010-03-18 21:35:20 +000049 </url>
50 </scm>
51
52 <build>
53 <plugins>
54 <plugin>
Felix Meschberger57e77112010-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 Meschbergere82e6652010-03-18 21:35:20 +000063 <groupId>org.apache.felix</groupId>
64 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschberger2dd1d592010-03-26 09:35:41 +000065 <version>2.0.1</version>
Felix Meschbergere82e6652010-03-18 21:35:20 +000066 <extensions>true</extensions>
67 <configuration>
68 <instructions>
69 <Import-Package>
70 javax.management.*,
71 org.osgi.framework,
72 org.slf4j.*,
Felix Meschbergerebec1ef2010-03-23 12:46:55 +000073
74 <!-- plug into the traditional Felix shell -->
Felix Meschbergere82e6652010-03-18 21:35:20 +000075 org.apache.felix.shell;
Felix Meschbergerebec1ef2010-03-23 12:46:55 +000076
77 <!-- plug into the web console -->
78 javax.servlet.*;
79 org.apache.felix.webconsole;
80
81 <!-- support configuration -->
82 org.osgi.service.cm;
83 org.osgi.service.metatype;resolution:=optional
Felix Meschbergere82e6652010-03-18 21:35:20 +000084 </Import-Package>
85 <Private-Package>
Felix Meschberger03810b02010-03-18 22:02:45 +000086 org.apache.felix.webconsole.plugins.memoryusage.*
Felix Meschbergere82e6652010-03-18 21:35:20 +000087 </Private-Package>
88 <Bundle-Activator>
Felix Meschberger03810b02010-03-18 22:02:45 +000089 org.apache.felix.webconsole.plugins.memoryusage.internal.Activator
Felix Meschbergere82e6652010-03-18 21:35:20 +000090 </Bundle-Activator>
91 </instructions>
92 </configuration>
93 </plugin>
94 </plugins>
95 </build>
96 <dependencies>
97 <dependency>
98 <groupId>org.osgi</groupId>
99 <artifactId>org.osgi.core</artifactId>
Felix Meschberger03810b02010-03-18 22:02:45 +0000100 <version>4.0.0</version>
101 <scope>provided</scope>
Felix Meschbergere82e6652010-03-18 21:35:20 +0000102 </dependency>
103 <dependency>
104 <groupId>org.osgi</groupId>
105 <artifactId>org.osgi.compendium</artifactId>
Felix Meschberger03810b02010-03-18 22:02:45 +0000106 <version>4.0.0</version>
107 <scope>provided</scope>
Felix Meschbergere82e6652010-03-18 21:35:20 +0000108 </dependency>
109 <dependency>
110 <groupId>org.apache.felix</groupId>
111 <artifactId>org.apache.felix.shell</artifactId>
112 <version>1.0.0</version>
Felix Meschberger03810b02010-03-18 22:02:45 +0000113 <scope>provided</scope>
Felix Meschbergere82e6652010-03-18 21:35:20 +0000114 </dependency>
115 <dependency>
116 <groupId>org.apache.felix</groupId>
117 <artifactId>org.apache.felix.webconsole</artifactId>
Felix Meschbergera47bf482010-04-02 15:18:32 +0000118 <version>3.0.0</version>
Felix Meschberger03810b02010-03-18 22:02:45 +0000119 <scope>provided</scope>
Felix Meschbergere82e6652010-03-18 21:35:20 +0000120 </dependency>
121 <dependency>
122 <groupId>javax.servlet</groupId>
123 <artifactId>servlet-api</artifactId>
Felix Meschberger03810b02010-03-18 22:02:45 +0000124 <version>2.3</version>
125 <scope>provided</scope>
Felix Meschbergere82e6652010-03-18 21:35:20 +0000126 </dependency>
127 <dependency>
128 <groupId>org.slf4j</groupId>
129 <artifactId>slf4j-api</artifactId>
Felix Meschberger03810b02010-03-18 22:02:45 +0000130 <version>1.5.2</version>
131 <scope>provided</scope>
Felix Meschbergere82e6652010-03-18 21:35:20 +0000132 </dependency>
133 <dependency>
134 <groupId>junit</groupId>
135 <artifactId>junit</artifactId>
Felix Meschberger03810b02010-03-18 22:02:45 +0000136 <version>3.8.1</version>
Felix Meschbergere82e6652010-03-18 21:35:20 +0000137 </dependency>
138 </dependencies>
139</project>