blob: 62b3b70d48d466b7439251a529f65291e813200b [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>
32 <version>0.1.0-SNAPSHOT</version>
33
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 Meschberger03810b02010-03-18 22:02:45 +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 Meschberger03810b02010-03-18 22:02:45 +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 Meschberger03810b02010-03-18 22:02:45 +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>
55 <groupId>org.apache.felix</groupId>
56 <artifactId>maven-bundle-plugin</artifactId>
57 <extensions>true</extensions>
58 <configuration>
59 <instructions>
60 <Import-Package>
61 javax.management.*,
62 org.osgi.framework,
63 org.slf4j.*,
64 javax.servlet.*;
65 org.apache.felix.shell;
66 org.apache.felix.webconsole;resolution:=optional
67 </Import-Package>
68 <Private-Package>
Felix Meschberger03810b02010-03-18 22:02:45 +000069 org.apache.felix.webconsole.plugins.memoryusage.*
Felix Meschbergere82e6652010-03-18 21:35:20 +000070 </Private-Package>
71 <Bundle-Activator>
Felix Meschberger03810b02010-03-18 22:02:45 +000072 org.apache.felix.webconsole.plugins.memoryusage.internal.Activator
Felix Meschbergere82e6652010-03-18 21:35:20 +000073 </Bundle-Activator>
74 </instructions>
75 </configuration>
76 </plugin>
77 </plugins>
78 </build>
79 <dependencies>
80 <dependency>
81 <groupId>org.osgi</groupId>
82 <artifactId>org.osgi.core</artifactId>
Felix Meschberger03810b02010-03-18 22:02:45 +000083 <version>4.0.0</version>
84 <scope>provided</scope>
Felix Meschbergere82e6652010-03-18 21:35:20 +000085 </dependency>
86 <dependency>
87 <groupId>org.osgi</groupId>
88 <artifactId>org.osgi.compendium</artifactId>
Felix Meschberger03810b02010-03-18 22:02:45 +000089 <version>4.0.0</version>
90 <scope>provided</scope>
Felix Meschbergere82e6652010-03-18 21:35:20 +000091 </dependency>
92 <dependency>
93 <groupId>org.apache.felix</groupId>
94 <artifactId>org.apache.felix.shell</artifactId>
95 <version>1.0.0</version>
Felix Meschberger03810b02010-03-18 22:02:45 +000096 <scope>provided</scope>
Felix Meschbergere82e6652010-03-18 21:35:20 +000097 </dependency>
98 <dependency>
99 <groupId>org.apache.felix</groupId>
100 <artifactId>org.apache.felix.webconsole</artifactId>
101 <version>2.0.7-SNAPSHOT</version>
Felix Meschberger03810b02010-03-18 22:02:45 +0000102 <scope>provided</scope>
Felix Meschbergere82e6652010-03-18 21:35:20 +0000103 </dependency>
104 <dependency>
105 <groupId>javax.servlet</groupId>
106 <artifactId>servlet-api</artifactId>
Felix Meschberger03810b02010-03-18 22:02:45 +0000107 <version>2.3</version>
108 <scope>provided</scope>
Felix Meschbergere82e6652010-03-18 21:35:20 +0000109 </dependency>
110 <dependency>
111 <groupId>org.slf4j</groupId>
112 <artifactId>slf4j-api</artifactId>
Felix Meschberger03810b02010-03-18 22:02:45 +0000113 <version>1.5.2</version>
114 <scope>provided</scope>
Felix Meschbergere82e6652010-03-18 21:35:20 +0000115 </dependency>
116 <dependency>
117 <groupId>junit</groupId>
118 <artifactId>junit</artifactId>
Felix Meschberger03810b02010-03-18 22:02:45 +0000119 <version>3.8.1</version>
Felix Meschbergere82e6652010-03-18 21:35:20 +0000120 </dependency>
121 </dependencies>
122</project>