blob: 1a865b7bfea7a9b80ca1ef42b6583f7691091235 [file] [log] [blame]
Felix Meschberger57a05152012-06-01 13:19:09 +00001<!-- 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 Ziegeler5a144ab2015-08-06 03:43:39 +000017 <version>3</version>
Felix Meschberger57a05152012-06-01 13:19:09 +000018 <relativePath>../../../pom/pom.xml</relativePath>
19 </parent>
20
21 <artifactId>org.apache.felix.webconsole.plugins.ds</artifactId>
22 <packaging>bundle</packaging>
Carsten Ziegelerec6bfc12015-09-16 07:11:16 +000023 <version>2.0.3-SNAPSHOT</version>
Felix Meschberger57a05152012-06-01 13:19:09 +000024
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 Ziegelerec6bfc12015-09-16 07:11:16 +000031 <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 Meschberger57a05152012-06-01 13:19:09 +000034 </scm>
35
Carsten Ziegeler5a144ab2015-08-06 03:43:39 +000036 <properties>
Carsten Ziegeler8defe432015-08-06 11:55:04 +000037 <felix.java.version>5</felix.java.version>
Carsten Ziegeler5a144ab2015-08-06 03:43:39 +000038 </properties>
39
Felix Meschberger57a05152012-06-01 13:19:09 +000040 <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 Ziegeler5a144ab2015-08-06 03:43:39 +000062 <version>2.5.3</version>
Felix Meschberger57a05152012-06-01 13:19:09 +000063 <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 Ziegeler5a144ab2015-08-06 03:43:39 +000075 <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 Meschberger57a05152012-06-01 13:19:09 +000080 </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 Ziegeler5a144ab2015-08-06 03:43:39 +000095 <artifactId>osgi.core</artifactId>
Carsten Ziegeler1aa0a192015-02-03 21:52:14 +000096 <version>6.0.0</version>
Felix Meschberger57a05152012-06-01 13:19:09 +000097 <scope>provided</scope>
98 </dependency>
99 <dependency>
100 <groupId>org.osgi</groupId>
Carsten Ziegeler5a144ab2015-08-06 03:43:39 +0000101 <artifactId>osgi.cmpn</artifactId>
102 <version>6.0.0</version>
Felix Meschberger57a05152012-06-01 13:19:09 +0000103 <scope>provided</scope>
104 </dependency>
105 <dependency>
106 <groupId>org.apache.felix</groupId>
107 <artifactId>org.apache.felix.webconsole</artifactId>
Valentin Valchevfd12f772014-07-14 13:35:25 +0000108 <version>4.2.0</version>
Felix Meschberger57a05152012-06-01 13:19:09 +0000109 <scope>provided</scope>
110 </dependency>
111 <dependency>
Valentin Valchev99625de2014-07-15 07:10:01 +0000112 <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 Meschberger57a05152012-06-01 13:19:09 +0000119 <groupId>org.json</groupId>
120 <artifactId>json</artifactId>
121 <version>20070829</version>
122 <scope>provided</scope>
123 </dependency>
Carsten Ziegeler5a144ab2015-08-06 03:43:39 +0000124
Felix Meschberger57a05152012-06-01 13:19:09 +0000125 </dependencies>
126</project>