blob: 16a0dac5fcaed4ff8ebfb4c70d5aea6f14561fda [file] [log] [blame]
Felix Meschbergereabbd9e2011-06-21 12:43:10 +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>
24 <groupId>org.apache.felix</groupId>
25 <artifactId>felix-parent</artifactId>
Felix Meschberger4b2c11d2011-06-30 13:55:25 +000026 <version>2</version>
Felix Meschbergereabbd9e2011-06-21 12:43:10 +000027 <relativePath>../../../pom/pom.xml</relativePath>
28 </parent>
29
30 <artifactId>org.apache.felix.webconsole.plugins.packageadmin</artifactId>
31 <packaging>bundle</packaging>
Valentin Valchevdef38f42015-09-17 10:09:55 +000032 <version>1.0.3-SNAPSHOT</version>
Felix Meschbergereabbd9e2011-06-21 12:43:10 +000033
34 <name>Apache Felix Web Console Package Admin Service Plugin</name>
35 <description>
36 Plugin providing support to query the Package Admin service
37 for various details; e.g. finding duplicate package exports
38 or finding bundles exporting given packages
39 </description>
40
41 <scm>
42 <connection>
Valentin Valchevdef38f42015-09-17 10:09:55 +000043 scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/packageadmin
Felix Meschbergereabbd9e2011-06-21 12:43:10 +000044 </connection>
45 <developerConnection>
Valentin Valchevdef38f42015-09-17 10:09:55 +000046 scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/packageadmin
Felix Meschbergereabbd9e2011-06-21 12:43:10 +000047 </developerConnection>
48 <url>
Valentin Valchevdef38f42015-09-17 10:09:55 +000049 http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/packageadmin
Felix Meschbergereabbd9e2011-06-21 12:43:10 +000050 </url>
51 </scm>
52
53 <build>
Valentin Valchev2144f3c2012-04-25 12:24:38 +000054
Felix Meschbergereabbd9e2011-06-21 12:43:10 +000055 <plugins>
Valentin Valchev2144f3c2012-04-25 12:24:38 +000056 <!-- translate UTF-8 encoded properties files to ISO-8859-1 -->
Felix Meschbergereabbd9e2011-06-21 12:43:10 +000057 <plugin>
Valentin Valchev2144f3c2012-04-25 12:24:38 +000058 <groupId>org.codehaus.mojo</groupId>
59 <artifactId>native2ascii-maven-plugin</artifactId>
60 <version>1.0-beta-1</version>
61 <executions>
62 <execution>
63 <goals>
64 <goal>native2ascii</goal>
65 </goals>
66 <configuration>
67 <encoding>UTF-8</encoding>
68 </configuration>
69 </execution>
70 </executions>
71 </plugin>
72
Felix Meschbergereabbd9e2011-06-21 12:43:10 +000073 <plugin>
74 <groupId>org.apache.felix</groupId>
75 <artifactId>maven-bundle-plugin</artifactId>
Valentin Valchev2144f3c2012-04-25 12:24:38 +000076 <version>2.3.6</version>
Felix Meschbergereabbd9e2011-06-21 12:43:10 +000077 <extensions>true</extensions>
78 <configuration>
79 <instructions>
80 <Bundle-SymbolicName>
81 ${project.artifactId}
82 </Bundle-SymbolicName>
Felix Meschbergereabbd9e2011-06-21 12:43:10 +000083 <Private-Package>
84 org.apache.felix.webconsole.plugins.packageadmin.*
85 </Private-Package>
Felix Meschberger29e5e672014-02-20 10:35:24 +000086 <Embed-Dependency>
87 org.apache.felix.utils;inline=org/apache/felix/utils/manifest/*
88 </Embed-Dependency>
Felix Meschbergereabbd9e2011-06-21 12:43:10 +000089 <Bundle-Activator>
90 org.apache.felix.webconsole.plugins.packageadmin.internal.Activator
91 </Bundle-Activator>
Valentin Valchev091c6922015-08-07 08:34:27 +000092 <Include-Resource>
93 {maven-resources},OSGI-INF=target/classes/OSGI-INF
94 </Include-Resource>
Felix Meschbergereabbd9e2011-06-21 12:43:10 +000095 </instructions>
96 </configuration>
97 </plugin>
Valentin Valchev091c6922015-08-07 08:34:27 +000098 <plugin>
Valentin Valchev2144f3c2012-04-25 12:24:38 +000099 <groupId>org.apache.rat</groupId>
100 <artifactId>apache-rat-plugin</artifactId>
101 <configuration>
102 <includes>
103 <include>src/**</include>
104 </includes>
105 <excludes>
Felix Meschbergerac21bda2012-06-01 14:24:29 +0000106 <exclude>src/main/appended-resources/**</exclude>
Valentin Valchev2144f3c2012-04-25 12:24:38 +0000107 <exclude>src/main/resources/res/plugin.html</exclude>
108 </excludes>
109 </configuration>
110 </plugin>
Felix Meschbergereabbd9e2011-06-21 12:43:10 +0000111 </plugins>
112 </build>
113 <dependencies>
114 <dependency>
115 <groupId>org.osgi</groupId>
116 <artifactId>org.osgi.core</artifactId>
Felix Meschberger29e5e672014-02-20 10:35:24 +0000117 <version>4.3.1</version>
Felix Meschbergereabbd9e2011-06-21 12:43:10 +0000118 <scope>provided</scope>
119 </dependency>
120 <dependency>
121 <groupId>org.osgi</groupId>
122 <artifactId>org.osgi.compendium</artifactId>
123 <version>4.0.0</version>
124 <scope>provided</scope>
125 </dependency>
126 <dependency>
Felix Meschberger29e5e672014-02-20 10:35:24 +0000127 <groupId>org.apache.felix</groupId>
128 <artifactId>org.apache.felix.utils</artifactId>
129 <version>1.4.0</version>
130 <scope>provided</scope>
131 </dependency>
132 <dependency>
Felix Meschbergereabbd9e2011-06-21 12:43:10 +0000133 <groupId>javax.servlet</groupId>
134 <artifactId>servlet-api</artifactId>
135 <version>2.3</version>
136 <scope>provided</scope>
137 </dependency>
Valentin Valchev2144f3c2012-04-25 12:24:38 +0000138 <dependency>
139 <groupId>commons-io</groupId>
140 <artifactId>commons-io</artifactId>
141 <version>1.4</version>
142 <scope>provided</scope>
143 </dependency>
Valentin Valchev091c6922015-08-07 08:34:27 +0000144 <dependency>
145 <groupId>org.apache.felix</groupId>
146 <artifactId>org.apache.felix.webconsole</artifactId>
147 <version>4.2.0</version>
148 <scope>provided</scope>
149 </dependency>
Valentin Valchev2144f3c2012-04-25 12:24:38 +0000150 <dependency>
Valentin Valchev8b9478c2015-08-07 08:59:16 +0000151 <groupId>org.apache.felix</groupId>
152 <artifactId>org.apache.felix.inventory</artifactId>
153 <version>1.0.0</version>
154 <scope>provided</scope>
155 </dependency>
156 <dependency>
Valentin Valchev2144f3c2012-04-25 12:24:38 +0000157 <groupId>org.json</groupId>
158 <artifactId>json</artifactId>
159 <version>20070829</version>
160 <scope>provided</scope>
161 </dependency>
Felix Meschbergereabbd9e2011-06-21 12:43:10 +0000162 </dependencies>
163</project>