Felix Meschberger | 7281bd9 | 2013-01-26 23:46:21 +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.l10n.ru</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | <version>0.0.1-SNAPSHOT</version> |
| 32 | |
| 33 | <name>Apache Felix Web Management Console - Russian Localization</name> |
| 34 | <description> |
| 35 | Russian localization of the Web Management Console. This bundle |
| 36 | attaches as a fragment to the Web Based Management Console for |
| 37 | OSGi Frameworks. See |
| 38 | http://felix.apache.org/site/apache-felix-web-console.html for more |
| 39 | information on this bundle. |
| 40 | </description> |
| 41 | |
| 42 | <scm> |
| 43 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-l10n/ru</connection> |
| 44 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-l10n/ru</developerConnection> |
| 45 | <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-l10n/ru</url> |
| 46 | </scm> |
| 47 | |
| 48 | <build> |
| 49 | <plugins> |
| 50 | <!-- translate UTF-8 encoded properties files to ISO-8859-1 --> |
| 51 | <plugin> |
| 52 | <groupId>org.codehaus.mojo</groupId> |
| 53 | <artifactId>native2ascii-maven-plugin</artifactId> |
| 54 | <version>1.0-beta-1</version> |
| 55 | <executions> |
| 56 | <execution> |
| 57 | <goals> |
| 58 | <goal>native2ascii</goal> |
| 59 | </goals> |
| 60 | <configuration> |
| 61 | <encoding>UTF-8</encoding> |
| 62 | </configuration> |
| 63 | </execution> |
| 64 | </executions> |
| 65 | </plugin> |
| 66 | <plugin> |
| 67 | <groupId>org.apache.felix</groupId> |
| 68 | <artifactId>maven-bundle-plugin</artifactId> |
| 69 | <version>2.3.6</version> |
| 70 | <extensions>true</extensions> |
| 71 | <configuration> |
| 72 | <instructions> |
| 73 | <Bundle-SymbolicName> |
| 74 | ${project.artifactId} |
| 75 | </Bundle-SymbolicName> |
| 76 | <Bundle-Vendor> |
| 77 | The Apache Software Foundation |
| 78 | </Bundle-Vendor> |
| 79 | <Bundle-DocURL> |
| 80 | http://felix.apache.org/site/apache-felix-web-console.html |
| 81 | </Bundle-DocURL> |
| 82 | <Fragment-Host> |
| 83 | org.apache.felix.webconsole |
| 84 | </Fragment-Host> |
| 85 | <_removeheaders> |
| 86 | Embed-Dependency,Private-Package,Include-Resource |
| 87 | </_removeheaders> |
| 88 | </instructions> |
| 89 | </configuration> |
| 90 | </plugin> |
| 91 | <plugin> |
| 92 | <groupId>org.apache.rat</groupId> |
| 93 | <artifactId>apache-rat-plugin</artifactId> |
| 94 | <configuration> |
| 95 | <includes> |
| 96 | <include>src/**</include> |
| 97 | </includes> |
| 98 | <excludes> |
| 99 | <exclude>src/main/appended-resources/**</exclude> |
| 100 | </excludes> |
| 101 | </configuration> |
| 102 | </plugin> |
| 103 | </plugins> |
| 104 | </build> |
| 105 | </project> |