Felix Meschberger | 57a0515 | 2012-06-01 13:19:09 +0000 | [diff] [blame] | 1 | <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor |
| 2 | license agreements. See the NOTICE file distributed with this work for additional |
| 3 | information regarding copyright ownership. The ASF licenses this file to |
| 4 | you under the Apache License, Version 2.0 (the "License"); you may not use |
| 5 | this file except in compliance with the License. You may obtain a copy of |
| 6 | the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required |
| 7 | by applicable law or agreed to in writing, software distributed under the |
| 8 | License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS |
| 9 | OF ANY KIND, either express or implied. See the License for the specific |
| 10 | language governing permissions and limitations under the License. --> |
| 11 | <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"> |
| 12 | |
| 13 | <modelVersion>4.0.0</modelVersion> |
| 14 | <parent> |
| 15 | <groupId>org.apache.felix</groupId> |
| 16 | <artifactId>felix-parent</artifactId> |
Carsten Ziegeler | 5a144ab | 2015-08-06 03:43:39 +0000 | [diff] [blame] | 17 | <version>3</version> |
Felix Meschberger | 57a0515 | 2012-06-01 13:19:09 +0000 | [diff] [blame] | 18 | <relativePath>../../../pom/pom.xml</relativePath> |
| 19 | </parent> |
| 20 | |
| 21 | <artifactId>org.apache.felix.webconsole.plugins.ds</artifactId> |
| 22 | <packaging>bundle</packaging> |
Carsten Ziegeler | b06349e | 2015-09-16 08:40:45 +0000 | [diff] [blame] | 23 | <version>2.0.3-SNAPSHOT</version> |
Felix Meschberger | 57a0515 | 2012-06-01 13:19:09 +0000 | [diff] [blame] | 24 | |
| 25 | <name>Apache Felix Web Console Service Component Runtime/Declarative Services Plugin</name> |
| 26 | <description> |
| 27 | This is a plugin for the Apache Felix OSGi web console for displaying Service Components/Declarative Services. |
| 28 | </description> |
| 29 | |
| 30 | <scm> |
Carsten Ziegeler | b06349e | 2015-09-16 08:40:45 +0000 | [diff] [blame] | 31 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/ds</connection> |
| 32 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/ds</developerConnection> |
| 33 | <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/ds</url> |
Felix Meschberger | 57a0515 | 2012-06-01 13:19:09 +0000 | [diff] [blame] | 34 | </scm> |
| 35 | |
Carsten Ziegeler | 5a144ab | 2015-08-06 03:43:39 +0000 | [diff] [blame] | 36 | <properties> |
Carsten Ziegeler | 8defe43 | 2015-08-06 11:55:04 +0000 | [diff] [blame] | 37 | <felix.java.version>5</felix.java.version> |
Carsten Ziegeler | 5a144ab | 2015-08-06 03:43:39 +0000 | [diff] [blame] | 38 | </properties> |
| 39 | |
Felix Meschberger | 57a0515 | 2012-06-01 13:19:09 +0000 | [diff] [blame] | 40 | <build> |
| 41 | <plugins> |
| 42 | <!-- translate UTF-8 encoded properties files to ISO-8859-1 --> |
| 43 | <plugin> |
| 44 | <groupId>org.codehaus.mojo</groupId> |
| 45 | <artifactId>native2ascii-maven-plugin</artifactId> |
| 46 | <version>1.0-beta-1</version> |
| 47 | <executions> |
| 48 | <execution> |
| 49 | <goals> |
| 50 | <goal>native2ascii</goal> |
| 51 | </goals> |
| 52 | <configuration> |
| 53 | <encoding>UTF-8</encoding> |
| 54 | </configuration> |
| 55 | </execution> |
| 56 | </executions> |
| 57 | </plugin> |
| 58 | |
| 59 | <plugin> |
| 60 | <groupId>org.apache.felix</groupId> |
| 61 | <artifactId>maven-bundle-plugin</artifactId> |
Carsten Ziegeler | 5a144ab | 2015-08-06 03:43:39 +0000 | [diff] [blame] | 62 | <version>2.5.3</version> |
Felix Meschberger | 57a0515 | 2012-06-01 13:19:09 +0000 | [diff] [blame] | 63 | <extensions>true</extensions> |
| 64 | <configuration> |
| 65 | <instructions> |
| 66 | <Bundle-SymbolicName> |
| 67 | ${project.artifactId} |
| 68 | </Bundle-SymbolicName> |
| 69 | <Bundle-Activator> |
| 70 | org.apache.felix.webconsole.plugins.ds.internal.Activator |
| 71 | </Bundle-Activator> |
| 72 | <Include-Resource> |
| 73 | {maven-resources},OSGI-INF=target/classes/OSGI-INF |
| 74 | </Include-Resource> |
Carsten Ziegeler | 5a144ab | 2015-08-06 03:43:39 +0000 | [diff] [blame] | 75 | <Import-Package> |
| 76 | org.osgi.service.cm;version="[1.2,2)", |
| 77 | org.osgi.service.metatype;version="[1.1,2)", |
| 78 | * |
| 79 | </Import-Package> |
Felix Meschberger | 57a0515 | 2012-06-01 13:19:09 +0000 | [diff] [blame] | 80 | </instructions> |
| 81 | </configuration> |
| 82 | </plugin> |
| 83 | </plugins> |
| 84 | </build> |
| 85 | |
| 86 | <dependencies> |
| 87 | <dependency> |
| 88 | <groupId>javax.servlet</groupId> |
| 89 | <artifactId>servlet-api</artifactId> |
| 90 | <version>2.4</version> |
| 91 | <scope>provided</scope> |
| 92 | </dependency> |
| 93 | <dependency> |
| 94 | <groupId>org.osgi</groupId> |
Carsten Ziegeler | 5a144ab | 2015-08-06 03:43:39 +0000 | [diff] [blame] | 95 | <artifactId>osgi.core</artifactId> |
Carsten Ziegeler | 1aa0a19 | 2015-02-03 21:52:14 +0000 | [diff] [blame] | 96 | <version>6.0.0</version> |
Felix Meschberger | 57a0515 | 2012-06-01 13:19:09 +0000 | [diff] [blame] | 97 | <scope>provided</scope> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>org.osgi</groupId> |
Carsten Ziegeler | 5a144ab | 2015-08-06 03:43:39 +0000 | [diff] [blame] | 101 | <artifactId>osgi.cmpn</artifactId> |
| 102 | <version>6.0.0</version> |
Felix Meschberger | 57a0515 | 2012-06-01 13:19:09 +0000 | [diff] [blame] | 103 | <scope>provided</scope> |
| 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>org.apache.felix</groupId> |
| 107 | <artifactId>org.apache.felix.webconsole</artifactId> |
Valentin Valchev | fd12f77 | 2014-07-14 13:35:25 +0000 | [diff] [blame] | 108 | <version>4.2.0</version> |
Felix Meschberger | 57a0515 | 2012-06-01 13:19:09 +0000 | [diff] [blame] | 109 | <scope>provided</scope> |
| 110 | </dependency> |
| 111 | <dependency> |
Valentin Valchev | 99625de | 2014-07-15 07:10:01 +0000 | [diff] [blame] | 112 | <groupId>org.apache.felix</groupId> |
| 113 | <artifactId>org.apache.felix.inventory</artifactId> |
| 114 | <version>1.0.4</version> |
| 115 | <scope>provided</scope> |
| 116 | </dependency> |
| 117 | |
| 118 | <dependency> |
Felix Meschberger | 57a0515 | 2012-06-01 13:19:09 +0000 | [diff] [blame] | 119 | <groupId>org.json</groupId> |
| 120 | <artifactId>json</artifactId> |
| 121 | <version>20070829</version> |
| 122 | <scope>provided</scope> |
| 123 | </dependency> |
Carsten Ziegeler | 5a144ab | 2015-08-06 03:43:39 +0000 | [diff] [blame] | 124 | |
Felix Meschberger | 57a0515 | 2012-06-01 13:19:09 +0000 | [diff] [blame] | 125 | </dependencies> |
| 126 | </project> |