Valentin Valchev | b7f9946 | 2014-12-16 11:04:31 +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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
| 20 |
|
| 21 | <modelVersion>4.0.0</modelVersion>
|
| 22 | <parent>
|
| 23 | <groupId>org.apache.felix</groupId>
|
| 24 | <artifactId>felix-parent</artifactId>
|
| 25 | <version>2.1</version>
|
| 26 | <relativePath>../../../pom/pom.xml</relativePath>
|
| 27 | </parent>
|
| 28 |
|
| 29 | <artifactId>org.apache.felix.webconsole.plugins.useradmin</artifactId>
|
| 30 | <packaging>bundle</packaging>
|
Valentin Valchev | 1002eb3 | 2015-03-10 13:09:05 +0000 | [diff] [blame] | 31 | <version>1.0.3-SNAPSHOT</version>
|
Valentin Valchev | b7f9946 | 2014-12-16 11:04:31 +0000 | [diff] [blame] | 32 |
|
| 33 | <name>Apache Felix Web Console User Admin Plugin</name>
|
| 34 | <description>
|
| 35 | This is a plugin for the Apache Felix OSGi web console for displaying/managing OSGi Users and Groups.
|
| 36 | </description>
|
| 37 |
|
| 38 | <scm>
|
Valentin Valchev | 1002eb3 | 2015-03-10 13:09:05 +0000 | [diff] [blame] | 39 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/useradmin</connection>
|
| 40 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/useradmin</developerConnection>
|
| 41 | <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/useradmin</url>
|
Valentin Valchev | b7f9946 | 2014-12-16 11:04:31 +0000 | [diff] [blame] | 42 | </scm>
|
| 43 |
|
| 44 | <build>
|
| 45 | <plugins>
|
| 46 | <!-- translate UTF-8 encoded properties files to ISO-8859-1 -->
|
| 47 | <plugin>
|
| 48 | <groupId>org.codehaus.mojo</groupId>
|
| 49 | <artifactId>native2ascii-maven-plugin</artifactId>
|
| 50 | <version>1.0-beta-1</version>
|
| 51 | <executions>
|
| 52 | <execution>
|
| 53 | <goals>
|
| 54 | <goal>native2ascii</goal>
|
| 55 | </goals>
|
| 56 | <configuration>
|
| 57 | <encoding>UTF-8</encoding>
|
| 58 | </configuration>
|
| 59 | </execution>
|
| 60 | </executions>
|
| 61 | </plugin>
|
| 62 |
|
| 63 | <plugin>
|
| 64 | <groupId>org.apache.felix</groupId>
|
| 65 | <artifactId>maven-bundle-plugin</artifactId>
|
| 66 | <version>2.3.4</version>
|
| 67 | <extensions>true</extensions>
|
| 68 | <configuration>
|
| 69 | <instructions>
|
| 70 | <Bundle-SymbolicName>
|
| 71 | ${project.artifactId}
|
| 72 | </Bundle-SymbolicName>
|
| 73 | <Bundle-Activator>
|
| 74 | org.apache.felix.webconsole.plugins.useradmin.internal.Activator
|
| 75 | </Bundle-Activator>
|
| 76 | <Include-Resource>
|
| 77 | {maven-resources},OSGI-INF=target/classes/OSGI-INF
|
| 78 | </Include-Resource>
|
| 79 | </instructions>
|
| 80 | </configuration>
|
| 81 | </plugin>
|
| 82 |
|
| 83 | <plugin>
|
| 84 | <groupId>org.apache.rat</groupId>
|
| 85 | <artifactId>apache-rat-plugin</artifactId>
|
| 86 | <configuration>
|
| 87 | <excludes>
|
| 88 | <exclude>src/main/appended-resources/**</exclude>
|
Valentin Valchev | 8503056 | 2015-01-13 08:23:56 +0000 | [diff] [blame] | 89 | <exclude>src/main/resources/res/**</exclude>
|
Valentin Valchev | b7f9946 | 2014-12-16 11:04:31 +0000 | [diff] [blame] | 90 | </excludes>
|
| 91 | </configuration>
|
| 92 | </plugin>
|
| 93 | </plugins>
|
| 94 | </build>
|
| 95 |
|
| 96 | <dependencies>
|
| 97 | <dependency>
|
| 98 | <groupId>javax.servlet</groupId>
|
| 99 | <artifactId>servlet-api</artifactId>
|
| 100 | <version>2.4</version>
|
| 101 | <scope>provided</scope>
|
| 102 | </dependency>
|
| 103 | <dependency>
|
| 104 | <groupId>org.osgi</groupId>
|
| 105 | <artifactId>org.osgi.core</artifactId>
|
| 106 | <version>4.0.0</version>
|
| 107 | <scope>provided</scope>
|
| 108 | </dependency>
|
| 109 | <dependency>
|
| 110 | <groupId>org.osgi</groupId>
|
| 111 | <artifactId>org.osgi.compendium</artifactId>
|
| 112 | <version>4.1.0</version>
|
| 113 | <scope>provided</scope>
|
| 114 | </dependency>
|
| 115 | <dependency>
|
| 116 | <groupId>org.apache.felix</groupId>
|
| 117 | <artifactId>org.apache.felix.webconsole</artifactId>
|
| 118 | <version>4.2.0</version>
|
| 119 | <scope>provided</scope>
|
| 120 | </dependency>
|
| 121 | <dependency>
|
| 122 | <groupId>org.json</groupId>
|
| 123 | <artifactId>json</artifactId>
|
| 124 | <version>20070829</version>
|
| 125 | <scope>provided</scope>
|
| 126 | </dependency>
|
| 127 | </dependencies>
|
| 128 | </project>
|