blob: f1e5644feb630185e97473e3be8369250164ca78 [file] [log] [blame]
Valentin Valcheveddfbc42012-08-21 20:06:24 +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.useradmin</artifactId>
22 <packaging>bundle</packaging>
23 <version>0.0.1-SNAPSHOT</version>
24
25 <name>Apache Felix Web Console User Admin Plugin</name>
26 <description>
27 This is a plugin for the Apache Felix OSGi web console for displaying/managing OSGi Users and Groups.
28 </description>
29
30 <scm>
31 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/useradmin</connection>
32 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/useradmin</developerConnection>
33 <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/useradmin</url>
34 </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.useradmin.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>
74 </plugins>
75 </build>
76
77 <dependencies>
78 <dependency>
79 <groupId>javax.servlet</groupId>
80 <artifactId>servlet-api</artifactId>
81 <version>2.4</version>
82 <scope>provided</scope>
83 </dependency>
84 <dependency>
85 <groupId>org.osgi</groupId>
86 <artifactId>org.osgi.core</artifactId>
87 <version>4.0.0</version>
88 <scope>provided</scope>
89 </dependency>
90 <dependency>
91 <groupId>org.osgi</groupId>
92 <artifactId>org.osgi.compendium</artifactId>
93 <version>4.1.0</version>
94 <scope>provided</scope>
95 </dependency>
96 <dependency>
97 <groupId>org.apache.felix</groupId>
98 <artifactId>org.apache.felix.webconsole</artifactId>
99 <version>4.0.1-SNAPSHOT</version>
100 <scope>provided</scope>
101 </dependency>
102 <dependency>
103 <groupId>org.json</groupId>
104 <artifactId>json</artifactId>
105 <version>20070829</version>
106 <scope>provided</scope>
107 </dependency>
108 </dependencies>
109</project>