blob: e23770c936072e147cd7b5b2df5dbc97a598da29 [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>
Valentin Valchevde380ef2012-04-05 12:04:37 +000038 <!-- add UTF-8-to-ISO translated resources -->
39 <resources>
40 <resource>
41 <directory>${basedir}/src/main/resources</directory>
42 </resource>
43 <resource>
44 <directory>target/classes</directory>
45 <includes>
46 <include>OSGI-INF/**</include>
47 </includes>
48 <filtering>false</filtering>
49 </resource>
50 </resources>
51
Felix Meschbergera0dd9282011-11-14 15:26:57 +000052 <plugins>
53 <!-- translate UTF-8 encoded properties files to ISO-8859-1 -->
54 <plugin>
55 <groupId>org.codehaus.mojo</groupId>
56 <artifactId>native2ascii-maven-plugin</artifactId>
Felix Meschbergerd7274052011-12-17 13:57:38 +000057 <version>1.0-beta-1</version>
Felix Meschbergera0dd9282011-11-14 15:26:57 +000058 <executions>
59 <execution>
60 <goals>
61 <goal>native2ascii</goal>
62 </goals>
63 <configuration>
64 <encoding>UTF-8</encoding>
65 </configuration>
66 </execution>
67 </executions>
68 </plugin>
Valentin Valchev32cf3b12011-09-12 14:45:53 +000069
Felix Meschbergera0dd9282011-11-14 15:26:57 +000070 <plugin>
71 <groupId>org.apache.felix</groupId>
72 <artifactId>maven-bundle-plugin</artifactId>
73 <version>2.3.4</version>
74 <extensions>true</extensions>
75 <configuration>
76 <instructions>
77 <Bundle-SymbolicName>
78 ${project.artifactId}
Valentin Valchev32cf3b12011-09-12 14:45:53 +000079 </Bundle-SymbolicName>
Felix Meschbergera0dd9282011-11-14 15:26:57 +000080 <Bundle-Activator>
81 org.apache.felix.webconsole.plugins.ds.internal.Activator
Valentin Valchev32cf3b12011-09-12 14:45:53 +000082 </Bundle-Activator>
Felix Meschbergera0dd9282011-11-14 15:26:57 +000083 </instructions>
84 </configuration>
85 </plugin>
86 </plugins>
87 </build>
Valentin Valchev32cf3b12011-09-12 14:45:53 +000088
Felix Meschbergera0dd9282011-11-14 15:26:57 +000089 <dependencies>
90 <dependency>
91 <groupId>javax.servlet</groupId>
92 <artifactId>servlet-api</artifactId>
93 <version>2.4</version>
Felix Meschberger62565b72011-11-14 15:23:48 +000094 <scope>provided</scope>
Felix Meschbergera0dd9282011-11-14 15:26:57 +000095 </dependency>
96 <dependency>
97 <groupId>org.osgi</groupId>
98 <artifactId>org.osgi.core</artifactId>
99 <version>4.0.0</version>
100 <scope>provided</scope>
101 </dependency>
102 <dependency>
103 <groupId>org.osgi</groupId>
104 <artifactId>org.osgi.compendium</artifactId>
105 <version>4.1.0</version>
106 <scope>provided</scope>
107 </dependency>
108 <dependency>
109 <groupId>org.apache.felix</groupId>
110 <artifactId>org.apache.felix.webconsole</artifactId>
111 <version>3.1.0</version>
112 <scope>provided</scope>
113 </dependency>
114 <dependency>
115 <groupId>org.json</groupId>
116 <artifactId>json</artifactId>
117 <version>20070829</version>
118 <scope>provided</scope>
119 </dependency>
120 <dependency>
121 <groupId>org.apache.felix</groupId>
122 <artifactId>org.apache.felix.scr</artifactId>
123 <version>1.6.0</version>
124 <scope>provided</scope>
125 </dependency>
126 </dependencies>
Valentin Valchev32cf3b12011-09-12 14:45:53 +0000127</project>