blob: c301acf573286755ae8be6bd41f5974ed524b170 [file] [log] [blame]
Valentin Valchev32cf3b12011-09-12 14:45:53 +00001<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
Felix Meschbergera0dd9282011-11-14 15:26:57 +00002 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. -->
Valentin Valchev32cf3b12011-09-12 14:45:53 +000011<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Felix Meschbergera0dd9282011-11-14 15:26:57 +000012 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Valentin Valchev32cf3b12011-09-12 14:45:53 +000013
Felix Meschbergera0dd9282011-11-14 15:26:57 +000014 <modelVersion>4.0.0</modelVersion>
15 <parent>
16 <groupId>org.apache.felix</groupId>
17 <artifactId>felix-parent</artifactId>
18 <version>2.1</version>
19 <relativePath>../../../pom/pom.xml</relativePath>
20 </parent>
Valentin Valchev32cf3b12011-09-12 14:45:53 +000021
Felix Meschbergera0dd9282011-11-14 15:26:57 +000022 <artifactId>org.apache.felix.webconsole.plugins.ds</artifactId>
23 <packaging>bundle</packaging>
24 <version>1.0.0-SNAPSHOT</version>
Valentin Valchev32cf3b12011-09-12 14:45:53 +000025
Felix Meschbergera0dd9282011-11-14 15:26:57 +000026 <name>Apache Felix Web Console Service Component Runtime/Declarative Services Plugin</name>
27 <description>
Valentin Valchev32cf3b12011-09-12 14:45:53 +000028 This is a plugin for the Apache Felix OSGi web console for displaying Service Components/Declarative Services.
29 </description>
30
Felix Meschbergera0dd9282011-11-14 15:26:57 +000031 <scm>
32 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/ds</connection>
33 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/ds</developerConnection>
34 <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/ds</url>
35 </scm>
Valentin Valchev32cf3b12011-09-12 14:45:53 +000036
Felix Meschbergera0dd9282011-11-14 15:26:57 +000037 <build>
38 <plugins>
39 <!-- translate UTF-8 encoded properties files to ISO-8859-1 -->
40 <plugin>
41 <groupId>org.codehaus.mojo</groupId>
42 <artifactId>native2ascii-maven-plugin</artifactId>
Felix Meschbergerd7274052011-12-17 13:57:38 +000043 <version>1.0-beta-1</version>
Felix Meschbergera0dd9282011-11-14 15:26:57 +000044 <executions>
45 <execution>
46 <goals>
47 <goal>native2ascii</goal>
48 </goals>
49 <configuration>
50 <encoding>UTF-8</encoding>
51 </configuration>
52 </execution>
53 </executions>
54 </plugin>
Valentin Valchev32cf3b12011-09-12 14:45:53 +000055
Felix Meschbergera0dd9282011-11-14 15:26:57 +000056 <plugin>
57 <groupId>org.apache.felix</groupId>
58 <artifactId>maven-bundle-plugin</artifactId>
59 <version>2.3.4</version>
60 <extensions>true</extensions>
61 <configuration>
62 <instructions>
63 <Bundle-SymbolicName>
64 ${project.artifactId}
Valentin Valchev32cf3b12011-09-12 14:45:53 +000065 </Bundle-SymbolicName>
Felix Meschbergera0dd9282011-11-14 15:26:57 +000066 <Bundle-Activator>
67 org.apache.felix.webconsole.plugins.ds.internal.Activator
Valentin Valchev32cf3b12011-09-12 14:45:53 +000068 </Bundle-Activator>
Felix Meschberger60a2cc52012-04-05 14:17:06 +000069 <Include-Resource>
70 {maven-resources},OSGI-INF=target/classes/OSGI-INF
71 </Include-Resource>
Felix Meschbergera0dd9282011-11-14 15:26:57 +000072 </instructions>
73 </configuration>
74 </plugin>
75 </plugins>
76 </build>
Valentin Valchev32cf3b12011-09-12 14:45:53 +000077
Felix Meschbergera0dd9282011-11-14 15:26:57 +000078 <dependencies>
79 <dependency>
80 <groupId>javax.servlet</groupId>
81 <artifactId>servlet-api</artifactId>
82 <version>2.4</version>
Felix Meschberger62565b72011-11-14 15:23:48 +000083 <scope>provided</scope>
Felix Meschbergera0dd9282011-11-14 15:26:57 +000084 </dependency>
85 <dependency>
86 <groupId>org.osgi</groupId>
87 <artifactId>org.osgi.core</artifactId>
88 <version>4.0.0</version>
89 <scope>provided</scope>
90 </dependency>
91 <dependency>
92 <groupId>org.osgi</groupId>
93 <artifactId>org.osgi.compendium</artifactId>
94 <version>4.1.0</version>
95 <scope>provided</scope>
96 </dependency>
97 <dependency>
98 <groupId>org.apache.felix</groupId>
99 <artifactId>org.apache.felix.webconsole</artifactId>
100 <version>3.1.0</version>
101 <scope>provided</scope>
102 </dependency>
103 <dependency>
104 <groupId>org.json</groupId>
105 <artifactId>json</artifactId>
106 <version>20070829</version>
107 <scope>provided</scope>
108 </dependency>
109 <dependency>
110 <groupId>org.apache.felix</groupId>
111 <artifactId>org.apache.felix.scr</artifactId>
112 <version>1.6.0</version>
113 <scope>provided</scope>
114 </dependency>
115 </dependencies>
Valentin Valchev32cf3b12011-09-12 14:45:53 +0000116</project>