blob: 0fe858b9108a82c4c0af66b44afcfed33c82c66a [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>
17 <version>2.1</version>
18 <relativePath>../../../pom/pom.xml</relativePath>
19 </parent>
20
21 <artifactId>org.apache.felix.webconsole.plugins.ds</artifactId>
22 <packaging>bundle</packaging>
Felix Meschberger6ec4edd2012-06-01 13:19:26 +000023 <version>1.0.1-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>
Felix Meschberger6ec4edd2012-06-01 13:19:26 +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
36 <build>
37 <plugins>
38 <!-- translate UTF-8 encoded properties files to ISO-8859-1 -->
39 <plugin>
40 <groupId>org.codehaus.mojo</groupId>
41 <artifactId>native2ascii-maven-plugin</artifactId>
42 <version>1.0-beta-1</version>
43 <executions>
44 <execution>
45 <goals>
46 <goal>native2ascii</goal>
47 </goals>
48 <configuration>
49 <encoding>UTF-8</encoding>
50 </configuration>
51 </execution>
52 </executions>
53 </plugin>
54
55 <plugin>
56 <groupId>org.apache.felix</groupId>
57 <artifactId>maven-bundle-plugin</artifactId>
58 <version>2.3.4</version>
59 <extensions>true</extensions>
60 <configuration>
61 <instructions>
62 <Bundle-SymbolicName>
63 ${project.artifactId}
64 </Bundle-SymbolicName>
65 <Bundle-Activator>
66 org.apache.felix.webconsole.plugins.ds.internal.Activator
67 </Bundle-Activator>
68 <Include-Resource>
69 {maven-resources},OSGI-INF=target/classes/OSGI-INF
70 </Include-Resource>
71 </instructions>
72 </configuration>
73 </plugin>
Carsten Ziegeler1aa0a192015-02-03 21:52:14 +000074
75 <plugin>
76 <groupId>org.apache.maven.plugins</groupId>
77 <artifactId>maven-compiler-plugin</artifactId>
78 <configuration>
79 <source>1.6</source>
80 <target>1.6</target>
81 </configuration>
82 </plugin>
Felix Meschberger57a05152012-06-01 13:19:09 +000083 </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>
95 <artifactId>org.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>
101 <artifactId>org.osgi.compendium</artifactId>
Carsten Ziegeler1aa0a192015-02-03 21:52:14 +0000102 <version>5.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>
124 <dependency>
125 <groupId>org.apache.felix</groupId>
126 <artifactId>org.apache.felix.scr</artifactId>
Carsten Ziegeler1aa0a192015-02-03 21:52:14 +0000127 <version>1.8.3-SNAPSHOT</version>
Felix Meschberger57a05152012-06-01 13:19:09 +0000128 <scope>provided</scope>
129 </dependency>
130 </dependencies>
131</project>