blob: 67470bef6e4788ff1ffa384539decd2e113ecfd6 [file] [log] [blame]
Valentin Valchev516c8e52014-11-18 08:37:37 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
19<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Valentin Valcheveddfbc42012-08-21 20:06:24 +000021
Valentin Valchev516c8e52014-11-18 08:37:37 +000022 <modelVersion>4.0.0</modelVersion>
23 <parent>
24 <groupId>org.apache.felix</groupId>
25 <artifactId>felix-parent</artifactId>
26 <version>2.1</version>
27 <relativePath>../../../pom/pom.xml</relativePath>
28 </parent>
Valentin Valcheveddfbc42012-08-21 20:06:24 +000029
Valentin Valchev516c8e52014-11-18 08:37:37 +000030 <artifactId>org.apache.felix.webconsole.plugins.useradmin</artifactId>
31 <packaging>bundle</packaging>
32 <version>0.0.1-SNAPSHOT</version>
Valentin Valcheveddfbc42012-08-21 20:06:24 +000033
Valentin Valchev516c8e52014-11-18 08:37:37 +000034 <name>Apache Felix Web Console User Admin Plugin</name>
35 <description>
Valentin Valcheveddfbc42012-08-21 20:06:24 +000036 This is a plugin for the Apache Felix OSGi web console for displaying/managing OSGi Users and Groups.
37 </description>
38
Valentin Valchev516c8e52014-11-18 08:37:37 +000039 <scm>
40 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/useradmin</connection>
41 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/useradmin</developerConnection>
42 <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/useradmin</url>
43 </scm>
Valentin Valcheveddfbc42012-08-21 20:06:24 +000044
Valentin Valchev516c8e52014-11-18 08:37:37 +000045 <build>
46 <plugins>
47 <!-- translate UTF-8 encoded properties files to ISO-8859-1 -->
48 <plugin>
49 <groupId>org.codehaus.mojo</groupId>
50 <artifactId>native2ascii-maven-plugin</artifactId>
51 <version>1.0-beta-1</version>
52 <executions>
53 <execution>
54 <goals>
55 <goal>native2ascii</goal>
56 </goals>
57 <configuration>
58 <encoding>UTF-8</encoding>
59 </configuration>
60 </execution>
61 </executions>
62 </plugin>
Valentin Valcheveddfbc42012-08-21 20:06:24 +000063
Valentin Valchev516c8e52014-11-18 08:37:37 +000064 <plugin>
65 <groupId>org.apache.felix</groupId>
66 <artifactId>maven-bundle-plugin</artifactId>
67 <version>2.3.4</version>
68 <extensions>true</extensions>
69 <configuration>
70 <instructions>
71 <Bundle-SymbolicName>
72 ${project.artifactId}
73 </Bundle-SymbolicName>
74 <Bundle-Activator>
75 org.apache.felix.webconsole.plugins.useradmin.internal.Activator
76 </Bundle-Activator>
77 <Include-Resource>
78 {maven-resources},OSGI-INF=target/classes/OSGI-INF
79 </Include-Resource>
80 </instructions>
81 </configuration>
82 </plugin>
Valentin Valcheveddfbc42012-08-21 20:06:24 +000083
Valentin Valchev516c8e52014-11-18 08:37:37 +000084 <plugin>
85 <groupId>org.apache.rat</groupId>
86 <artifactId>apache-rat-plugin</artifactId>
87 <configuration>
88 <excludes>
89 <exclude>src/main/appended-resources/**</exclude>
90 <exclude>src/main/resources/res/jsTree.v.0.9.9a/**</exclude>
91 <exclude>src/main/resources/res/*.html</exclude>
92 </excludes>
93 </configuration>
94 </plugin>
95 </plugins>
96 </build>
97
98 <dependencies>
99 <dependency>
100 <groupId>javax.servlet</groupId>
101 <artifactId>servlet-api</artifactId>
102 <version>2.4</version>
103 <scope>provided</scope>
104 </dependency>
105 <dependency>
106 <groupId>org.osgi</groupId>
107 <artifactId>org.osgi.core</artifactId>
108 <version>4.0.0</version>
109 <scope>provided</scope>
110 </dependency>
111 <dependency>
112 <groupId>org.osgi</groupId>
113 <artifactId>org.osgi.compendium</artifactId>
114 <version>4.1.0</version>
115 <scope>provided</scope>
116 </dependency>
117 <dependency>
118 <groupId>org.apache.felix</groupId>
119 <artifactId>org.apache.felix.webconsole</artifactId>
Valentin Valchev2af191f2014-12-16 09:47:13 +0000120 <version>4.2.0</version>
Valentin Valchev516c8e52014-11-18 08:37:37 +0000121 <scope>provided</scope>
122 </dependency>
123 <dependency>
124 <groupId>org.json</groupId>
125 <artifactId>json</artifactId>
126 <version>20070829</version>
127 <scope>provided</scope>
128 </dependency>
129 </dependencies>
Valentin Valcheveddfbc42012-08-21 20:06:24 +0000130</project>