blob: b30941d309869224575c40e54dacd6d2d1006325 [file] [log] [blame]
Felix Meschberger07aafdc2012-06-01 15:16:19 +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.obr</artifactId>
22 <packaging>bundle</packaging>
Carsten Ziegeler99b3bc62014-07-22 06:02:55 +000023 <version>1.0.3-SNAPSHOT</version>
Felix Meschberger07aafdc2012-06-01 15:16:19 +000024
25 <name>Apache Felix Web Console OBR Plugin</name>
26 <description>
27 This Apache Felix OSGi web console plugin provides method to install bundles from a bundle repository.
28 </description>
29
30 <scm>
Carsten Ziegeler99b3bc62014-07-22 06:02:55 +000031 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/obr</connection>
32 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/obr</developerConnection>
33 <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/obr</url>
Felix Meschberger07aafdc2012-06-01 15:16:19 +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.0.1</version>
59 <extensions>true</extensions>
60 <configuration>
61 <instructions>
62 <Bundle-SymbolicName>
63 ${artifactId}
64 </Bundle-SymbolicName>
65 <Bundle-Activator>
66 org.apache.felix.webconsole.plugins.obr.internal.Activator
67 </Bundle-Activator>
68 <DynamicImport-Package>
69 org.apache.felix.bundlerepository,
70 org.osgi.service.obr
71 </DynamicImport-Package>
72 <Include-Resource>
73 {maven-resources},OSGI-INF=target/classes/OSGI-INF
74 </Include-Resource>
75 </instructions>
76 </configuration>
77 </plugin>
78 <plugin>
79 <groupId>org.apache.rat</groupId>
80 <artifactId>apache-rat-plugin</artifactId>
81 <configuration>
82 <includes>
83 <include>src/**</include>
84 </includes>
85 <excludes>
86 <exclude>src/main/appended-resources/**</exclude>
87 <exclude>src/main/resources/res/plugin.html</exclude>
88 </excludes>
89 </configuration>
90 </plugin>
91 </plugins>
92 </build>
93
94 <dependencies>
95 <dependency>
96 <groupId>javax.servlet</groupId>
97 <artifactId>servlet-api</artifactId>
98 <version>2.4</version>
99 <scope>provided</scope>
100 </dependency>
101 <dependency>
102 <groupId>org.osgi</groupId>
103 <artifactId>org.osgi.core</artifactId>
Carsten Ziegelerf7863d42014-07-17 02:13:02 +0000104 <version>5.0.0</version>
Felix Meschberger07aafdc2012-06-01 15:16:19 +0000105 <scope>provided</scope>
106 </dependency>
107 <dependency>
108 <groupId>org.osgi</groupId>
109 <artifactId>org.osgi.compendium</artifactId>
110 <version>4.1.0</version>
111 <scope>provided</scope>
112 </dependency>
113 <dependency>
114 <groupId>org.json</groupId>
115 <artifactId>json</artifactId>
116 <version>20070829</version>
117 <scope>compile</scope>
118 <optional>true</optional>
119 </dependency>
120 <dependency>
121 <groupId>org.apache.felix</groupId>
122 <artifactId>org.apache.felix.webconsole</artifactId>
123 <version>3.0.0</version>
124 <scope>provided</scope>
125 </dependency>
126
127 <!-- OSGi and Apache Felix OBR API -->
128 <dependency>
129 <groupId>org.apache.felix</groupId>
130 <artifactId>org.osgi.service.obr</artifactId>
131 <version>1.0.2</version>
132 <scope>provided</scope>
133 </dependency>
134 <dependency>
135 <groupId>org.apache.felix</groupId>
136 <artifactId>org.apache.felix.bundlerepository</artifactId>
Carsten Ziegelerf7863d42014-07-17 02:13:02 +0000137 <version>2.0.2</version>
Felix Meschberger07aafdc2012-06-01 15:16:19 +0000138 <scope>provided</scope>
139 <optional>true</optional>
140 </dependency>
141 </dependencies>
142</project>