blob: c4a88f2a2d566a858f3a4087d3613335793602b4 [file] [log] [blame]
Valentin Valchev32cf3b12011-09-12 14:45:53 +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"
12 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
13
14 <modelVersion>4.0.0</modelVersion>
15 <parent>
16 <groupId>org.apache.felix</groupId>
17 <artifactId>felix-parent</artifactId>
18 <version>1.2.0</version>
19 <relativePath>../../../pom/pom.xml</relativePath>
20 </parent>
21
22 <artifactId>org.apache.felix.webconsole.plugins.obr</artifactId>
23 <packaging>bundle</packaging>
24 <version>1.0.0-SNAPSHOT</version>
25
26 <name>Apache Felix Web Console OBR Plugin</name>
27 <description>
28 This Apache Felix OSGi web console plugin provides method to install bundles from a bundle repository.
29 </description>
30
31 <scm>
32 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/obr</connection>
33 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/obr</developerConnection>
34 <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/obr</url>
35 </scm>
36
37 <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>
43 <version>1.0-alpha-1</version>
44 <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>
55
56 <plugin>
57 <groupId>org.apache.felix</groupId>
58 <artifactId>maven-bundle-plugin</artifactId>
59 <version>2.0.1</version>
60 <extensions>true</extensions>
61 <configuration>
62 <instructions>
63 <Bundle-SymbolicName>
64 ${artifactId}
65 </Bundle-SymbolicName>
66 <Bundle-Activator>
67 org.apache.felix.webconsole.plugins.obr.internal.Activator
68 </Bundle-Activator>
69 <DynamicImport-Package>
70 org.apache.felix.bundlerepository,
71 org.osgi.service.obr
72 </DynamicImport-Package>
73 </instructions>
74 </configuration>
75 </plugin>
76 </plugins>
77 </build>
78
79 <dependencies>
80 <dependency>
81 <groupId>javax.servlet</groupId>
82 <artifactId>servlet-api</artifactId>
83 <version>2.4</version>
84 <scope>provided</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.osgi</groupId>
88 <artifactId>org.osgi.core</artifactId>
89 <version>4.0.0</version>
90 <scope>provided</scope>
91 </dependency>
92 <dependency>
93 <groupId>org.osgi</groupId>
94 <artifactId>org.osgi.compendium</artifactId>
95 <version>4.1.0</version>
96 <scope>provided</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.json</groupId>
100 <artifactId>json</artifactId>
101 <version>20070829</version>
102 <scope>compile</scope>
103 <optional>true</optional>
104 </dependency>
105 <dependency>
106 <groupId>org.apache.felix</groupId>
107 <artifactId>org.apache.felix.webconsole</artifactId>
108 <version>3.0.0</version>
109 <scope>provided</scope>
110 </dependency>
111
112 <!-- OSGi and Apache Felix OBR API -->
113 <dependency>
114 <groupId>org.apache.felix</groupId>
115 <artifactId>org.osgi.service.obr</artifactId>
116 <version>1.0.2</version>
117 <scope>provided</scope>
118 </dependency>
119 <dependency>
120 <groupId>org.apache.felix</groupId>
121 <artifactId>org.apache.felix.bundlerepository</artifactId>
122 <version>1.6.0</version>
123 <scope>provided</scope>
124 <optional>true</optional>
125 </dependency>
126 </dependencies>
127</project>