Felix Meschberger | eabbd9e | 2011-06-21 12:43:10 +0000 | [diff] [blame] | 1 | <?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 Meschberger | 4b2c11d | 2011-06-30 13:55:25 +0000 | [diff] [blame] | 26 | <version>2</version> |
Felix Meschberger | eabbd9e | 2011-06-21 12:43:10 +0000 | [diff] [blame] | 27 | <relativePath>../../../pom/pom.xml</relativePath> |
| 28 | </parent> |
| 29 | |
| 30 | <artifactId>org.apache.felix.webconsole.plugins.packageadmin</artifactId> |
| 31 | <packaging>bundle</packaging> |
Felix Meschberger | 2a130ca | 2012-06-01 14:44:09 +0000 | [diff] [blame] | 32 | <version>1.0.1-SNAPSHOT</version> |
Felix Meschberger | eabbd9e | 2011-06-21 12:43:10 +0000 | [diff] [blame] | 33 | |
| 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> |
Felix Meschberger | 2a130ca | 2012-06-01 14:44:09 +0000 | [diff] [blame] | 43 | scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/packageadmin |
Felix Meschberger | eabbd9e | 2011-06-21 12:43:10 +0000 | [diff] [blame] | 44 | </connection> |
| 45 | <developerConnection> |
Felix Meschberger | 2a130ca | 2012-06-01 14:44:09 +0000 | [diff] [blame] | 46 | scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/packageadmin |
Felix Meschberger | eabbd9e | 2011-06-21 12:43:10 +0000 | [diff] [blame] | 47 | </developerConnection> |
| 48 | <url> |
Felix Meschberger | 2a130ca | 2012-06-01 14:44:09 +0000 | [diff] [blame] | 49 | http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/packageadmin |
Felix Meschberger | eabbd9e | 2011-06-21 12:43:10 +0000 | [diff] [blame] | 50 | </url> |
| 51 | </scm> |
| 52 | |
| 53 | <build> |
Valentin Valchev | 2144f3c | 2012-04-25 12:24:38 +0000 | [diff] [blame] | 54 | <!-- add UTF-8-to-ISO translated resources --> |
| 55 | <resources> |
| 56 | <resource> |
| 57 | <directory>${basedir}/src/main/resources</directory> |
| 58 | </resource> |
| 59 | <resource> |
| 60 | <directory>target/classes</directory> |
| 61 | <includes> |
| 62 | <include>OSGI-INF/**</include> |
| 63 | </includes> |
| 64 | <filtering>false</filtering> |
| 65 | </resource> |
| 66 | </resources> |
| 67 | |
Felix Meschberger | eabbd9e | 2011-06-21 12:43:10 +0000 | [diff] [blame] | 68 | <plugins> |
Valentin Valchev | 2144f3c | 2012-04-25 12:24:38 +0000 | [diff] [blame] | 69 | <!-- translate UTF-8 encoded properties files to ISO-8859-1 --> |
Felix Meschberger | eabbd9e | 2011-06-21 12:43:10 +0000 | [diff] [blame] | 70 | <plugin> |
Valentin Valchev | 2144f3c | 2012-04-25 12:24:38 +0000 | [diff] [blame] | 71 | <groupId>org.codehaus.mojo</groupId> |
| 72 | <artifactId>native2ascii-maven-plugin</artifactId> |
| 73 | <version>1.0-beta-1</version> |
| 74 | <executions> |
| 75 | <execution> |
| 76 | <goals> |
| 77 | <goal>native2ascii</goal> |
| 78 | </goals> |
| 79 | <configuration> |
| 80 | <encoding>UTF-8</encoding> |
| 81 | </configuration> |
| 82 | </execution> |
| 83 | </executions> |
| 84 | </plugin> |
| 85 | |
Felix Meschberger | eabbd9e | 2011-06-21 12:43:10 +0000 | [diff] [blame] | 86 | <plugin> |
| 87 | <groupId>org.apache.felix</groupId> |
| 88 | <artifactId>maven-bundle-plugin</artifactId> |
Valentin Valchev | 2144f3c | 2012-04-25 12:24:38 +0000 | [diff] [blame] | 89 | <version>2.3.6</version> |
Felix Meschberger | eabbd9e | 2011-06-21 12:43:10 +0000 | [diff] [blame] | 90 | <extensions>true</extensions> |
| 91 | <configuration> |
| 92 | <instructions> |
| 93 | <Bundle-SymbolicName> |
| 94 | ${project.artifactId} |
| 95 | </Bundle-SymbolicName> |
Felix Meschberger | eabbd9e | 2011-06-21 12:43:10 +0000 | [diff] [blame] | 96 | <Private-Package> |
| 97 | org.apache.felix.webconsole.plugins.packageadmin.* |
| 98 | </Private-Package> |
| 99 | <Bundle-Activator> |
| 100 | org.apache.felix.webconsole.plugins.packageadmin.internal.Activator |
| 101 | </Bundle-Activator> |
| 102 | </instructions> |
| 103 | </configuration> |
| 104 | </plugin> |
Valentin Valchev | 2144f3c | 2012-04-25 12:24:38 +0000 | [diff] [blame] | 105 | <plugin> |
| 106 | <groupId>org.apache.rat</groupId> |
| 107 | <artifactId>apache-rat-plugin</artifactId> |
| 108 | <configuration> |
| 109 | <includes> |
| 110 | <include>src/**</include> |
| 111 | </includes> |
| 112 | <excludes> |
Felix Meschberger | ac21bda | 2012-06-01 14:24:29 +0000 | [diff] [blame] | 113 | <exclude>src/main/appended-resources/**</exclude> |
Valentin Valchev | 2144f3c | 2012-04-25 12:24:38 +0000 | [diff] [blame] | 114 | <exclude>src/main/resources/res/plugin.html</exclude> |
| 115 | </excludes> |
| 116 | </configuration> |
| 117 | </plugin> |
Felix Meschberger | eabbd9e | 2011-06-21 12:43:10 +0000 | [diff] [blame] | 118 | </plugins> |
| 119 | </build> |
| 120 | <dependencies> |
| 121 | <dependency> |
| 122 | <groupId>org.osgi</groupId> |
| 123 | <artifactId>org.osgi.core</artifactId> |
| 124 | <version>4.0.0</version> |
| 125 | <scope>provided</scope> |
| 126 | </dependency> |
| 127 | <dependency> |
| 128 | <groupId>org.osgi</groupId> |
| 129 | <artifactId>org.osgi.compendium</artifactId> |
| 130 | <version>4.0.0</version> |
| 131 | <scope>provided</scope> |
| 132 | </dependency> |
| 133 | <dependency> |
| 134 | <groupId>javax.servlet</groupId> |
| 135 | <artifactId>servlet-api</artifactId> |
| 136 | <version>2.3</version> |
| 137 | <scope>provided</scope> |
| 138 | </dependency> |
Valentin Valchev | 2144f3c | 2012-04-25 12:24:38 +0000 | [diff] [blame] | 139 | <dependency> |
| 140 | <groupId>commons-io</groupId> |
| 141 | <artifactId>commons-io</artifactId> |
| 142 | <version>1.4</version> |
| 143 | <scope>provided</scope> |
| 144 | </dependency> |
| 145 | <dependency> |
| 146 | <groupId>org.apache.felix</groupId> |
| 147 | <artifactId>org.apache.felix.webconsole</artifactId> |
| 148 | <version>3.1.8</version> |
| 149 | <scope>provided</scope> |
| 150 | </dependency> |
| 151 | <dependency> |
| 152 | <groupId>org.json</groupId> |
| 153 | <artifactId>json</artifactId> |
| 154 | <version>20070829</version> |
| 155 | <scope>provided</scope> |
| 156 | </dependency> |
Felix Meschberger | eabbd9e | 2011-06-21 12:43:10 +0000 | [diff] [blame] | 157 | </dependencies> |
| 158 | </project> |