Valentin Valchev | 516c8e5 | 2014-11-18 08:37:37 +0000 | [diff] [blame] | 1 | <!-- |
| 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 Valchev | eddfbc4 | 2012-08-21 20:06:24 +0000 | [diff] [blame] | 21 | |
Valentin Valchev | 516c8e5 | 2014-11-18 08:37:37 +0000 | [diff] [blame] | 22 | <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 Valchev | eddfbc4 | 2012-08-21 20:06:24 +0000 | [diff] [blame] | 29 | |
Valentin Valchev | 516c8e5 | 2014-11-18 08:37:37 +0000 | [diff] [blame] | 30 | <artifactId>org.apache.felix.webconsole.plugins.useradmin</artifactId> |
| 31 | <packaging>bundle</packaging> |
| 32 | <version>0.0.1-SNAPSHOT</version> |
Valentin Valchev | eddfbc4 | 2012-08-21 20:06:24 +0000 | [diff] [blame] | 33 | |
Valentin Valchev | 516c8e5 | 2014-11-18 08:37:37 +0000 | [diff] [blame] | 34 | <name>Apache Felix Web Console User Admin Plugin</name> |
| 35 | <description> |
Valentin Valchev | eddfbc4 | 2012-08-21 20:06:24 +0000 | [diff] [blame] | 36 | This is a plugin for the Apache Felix OSGi web console for displaying/managing OSGi Users and Groups. |
| 37 | </description> |
| 38 | |
Valentin Valchev | 516c8e5 | 2014-11-18 08:37:37 +0000 | [diff] [blame] | 39 | <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 Valchev | eddfbc4 | 2012-08-21 20:06:24 +0000 | [diff] [blame] | 44 | |
Valentin Valchev | 516c8e5 | 2014-11-18 08:37:37 +0000 | [diff] [blame] | 45 | <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 Valchev | eddfbc4 | 2012-08-21 20:06:24 +0000 | [diff] [blame] | 63 | |
Valentin Valchev | 516c8e5 | 2014-11-18 08:37:37 +0000 | [diff] [blame] | 64 | <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 Valchev | eddfbc4 | 2012-08-21 20:06:24 +0000 | [diff] [blame] | 83 | |
Valentin Valchev | 516c8e5 | 2014-11-18 08:37:37 +0000 | [diff] [blame] | 84 | <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> |
| 120 | <version>4.0.1-SNAPSHOT</version> |
| 121 | <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 Valchev | eddfbc4 | 2012-08-21 20:06:24 +0000 | [diff] [blame] | 130 | </project> |