blob: d7b5e5f9b2942ff8504fb52b3db9871bc035abe4 [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>
32 <version>0.1.0-SNAPSHOT</version>
33
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 Meschberger76418902010-03-18 22:02:45 +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 Meschberger76418902010-03-18 22:02:45 +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 Meschberger76418902010-03-18 22:02:45 +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>
65 <extensions>true</extensions>
66 <configuration>
67 <instructions>
68 <Import-Package>
69 javax.management.*,
70 org.osgi.framework,
71 org.slf4j.*,
72 javax.servlet.*;
73 org.apache.felix.shell;
74 org.apache.felix.webconsole;resolution:=optional
75 </Import-Package>
76 <Private-Package>
Felix Meschberger76418902010-03-18 22:02:45 +000077 org.apache.felix.webconsole.plugins.memoryusage.*
Felix Meschberger9d86a262010-03-18 21:35:20 +000078 </Private-Package>
79 <Bundle-Activator>
Felix Meschberger76418902010-03-18 22:02:45 +000080 org.apache.felix.webconsole.plugins.memoryusage.internal.Activator
Felix Meschberger9d86a262010-03-18 21:35:20 +000081 </Bundle-Activator>
82 </instructions>
83 </configuration>
84 </plugin>
85 </plugins>
86 </build>
87 <dependencies>
88 <dependency>
89 <groupId>org.osgi</groupId>
90 <artifactId>org.osgi.core</artifactId>
Felix Meschberger76418902010-03-18 22:02:45 +000091 <version>4.0.0</version>
92 <scope>provided</scope>
Felix Meschberger9d86a262010-03-18 21:35:20 +000093 </dependency>
94 <dependency>
95 <groupId>org.osgi</groupId>
96 <artifactId>org.osgi.compendium</artifactId>
Felix Meschberger76418902010-03-18 22:02:45 +000097 <version>4.0.0</version>
98 <scope>provided</scope>
Felix Meschberger9d86a262010-03-18 21:35:20 +000099 </dependency>
100 <dependency>
101 <groupId>org.apache.felix</groupId>
102 <artifactId>org.apache.felix.shell</artifactId>
103 <version>1.0.0</version>
Felix Meschberger76418902010-03-18 22:02:45 +0000104 <scope>provided</scope>
Felix Meschberger9d86a262010-03-18 21:35:20 +0000105 </dependency>
106 <dependency>
107 <groupId>org.apache.felix</groupId>
108 <artifactId>org.apache.felix.webconsole</artifactId>
109 <version>2.0.7-SNAPSHOT</version>
Felix Meschberger76418902010-03-18 22:02:45 +0000110 <scope>provided</scope>
Felix Meschberger9d86a262010-03-18 21:35:20 +0000111 </dependency>
112 <dependency>
113 <groupId>javax.servlet</groupId>
114 <artifactId>servlet-api</artifactId>
Felix Meschberger76418902010-03-18 22:02:45 +0000115 <version>2.3</version>
116 <scope>provided</scope>
Felix Meschberger9d86a262010-03-18 21:35:20 +0000117 </dependency>
118 <dependency>
119 <groupId>org.slf4j</groupId>
120 <artifactId>slf4j-api</artifactId>
Felix Meschberger76418902010-03-18 22:02:45 +0000121 <version>1.5.2</version>
122 <scope>provided</scope>
Felix Meschberger9d86a262010-03-18 21:35:20 +0000123 </dependency>
124 <dependency>
125 <groupId>junit</groupId>
126 <artifactId>junit</artifactId>
Felix Meschberger76418902010-03-18 22:02:45 +0000127 <version>3.8.1</version>
Felix Meschberger9d86a262010-03-18 21:35:20 +0000128 </dependency>
129 </dependencies>
130</project>