Valentin Valchev | 32cf3b1 | 2011-09-12 14:45:53 +0000 | [diff] [blame] | 1 | <!-- 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"
|
| 12 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
| 13 |
|
| 14 | <modelVersion>4.0.0</modelVersion>
|
| 15 | <parent>
|
| 16 | <groupId>org.apache.felix</groupId>
|
| 17 | <artifactId>felix-parent</artifactId>
|
| 18 | <version>1.2.0</version>
|
| 19 | <relativePath>../../../pom/pom.xml</relativePath>
|
| 20 | </parent>
|
| 21 |
|
| 22 | <artifactId>org.apache.felix.webconsole.plugins.deppack</artifactId>
|
| 23 | <packaging>bundle</packaging>
|
| 24 | <version>1.0.0-SNAPSHOT</version>
|
| 25 |
|
| 26 | <name>Apache Felix Web Console Deployment Packages Plugin</name>
|
| 27 | <description>
|
| 28 | This is a plugin for the Apache Felix OSGi web console for displaying Deployment Packages.
|
| 29 | </description>
|
| 30 |
|
| 31 | <scm>
|
| 32 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/deppack</connection>
|
| 33 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/deppack</developerConnection>
|
| 34 | <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/deppack</url>
|
| 35 | </scm>
|
| 36 |
|
| 37 | <build>
|
Valentin Valchev | b78fda5 | 2012-04-05 12:08:24 +0000 | [diff] [blame] | 38 | <!-- add UTF-8-to-ISO translated resources -->
|
| 39 | <resources>
|
| 40 | <resource>
|
| 41 | <directory>${basedir}/src/main/resources</directory>
|
| 42 | </resource>
|
| 43 | <resource>
|
| 44 | <directory>target/classes</directory>
|
| 45 | <includes>
|
| 46 | <include>OSGI-INF/**</include>
|
| 47 | </includes>
|
| 48 | <filtering>false</filtering>
|
| 49 | </resource>
|
| 50 | </resources>
|
| 51 |
|
Valentin Valchev | 32cf3b1 | 2011-09-12 14:45:53 +0000 | [diff] [blame] | 52 | <plugins>
|
| 53 | <!-- translate UTF-8 encoded properties files to ISO-8859-1 -->
|
| 54 | <plugin>
|
| 55 | <groupId>org.codehaus.mojo</groupId>
|
| 56 | <artifactId>native2ascii-maven-plugin</artifactId>
|
Felix Meschberger | d727405 | 2011-12-17 13:57:38 +0000 | [diff] [blame] | 57 | <version>1.0-beta-1</version>
|
Valentin Valchev | 32cf3b1 | 2011-09-12 14:45:53 +0000 | [diff] [blame] | 58 | <executions>
|
| 59 | <execution>
|
| 60 | <goals>
|
| 61 | <goal>native2ascii</goal>
|
| 62 | </goals>
|
| 63 | <configuration>
|
| 64 | <encoding>UTF-8</encoding>
|
| 65 | </configuration>
|
| 66 | </execution>
|
| 67 | </executions>
|
| 68 | </plugin>
|
| 69 |
|
| 70 | <plugin>
|
| 71 | <groupId>org.apache.felix</groupId>
|
| 72 | <artifactId>maven-bundle-plugin</artifactId>
|
| 73 | <version>2.0.1</version>
|
| 74 | <extensions>true</extensions>
|
| 75 | <configuration>
|
| 76 | <instructions>
|
| 77 | <Bundle-SymbolicName>
|
| 78 | ${artifactId}
|
| 79 | </Bundle-SymbolicName>
|
| 80 | <Bundle-Activator>
|
| 81 | org.apache.felix.webconsole.plugins.deppack.internal.Activator
|
| 82 | </Bundle-Activator>
|
| 83 | </instructions>
|
| 84 | </configuration>
|
| 85 | </plugin>
|
| 86 | </plugins>
|
| 87 | </build>
|
| 88 |
|
| 89 | <dependencies>
|
| 90 | <dependency>
|
| 91 | <groupId>javax.servlet</groupId>
|
| 92 | <artifactId>servlet-api</artifactId>
|
| 93 | <version>2.4</version>
|
| 94 | <scope>provided</scope>
|
| 95 | </dependency>
|
| 96 | <dependency>
|
| 97 | <groupId>commons-fileupload</groupId>
|
| 98 | <artifactId>commons-fileupload</artifactId>
|
| 99 | <version>1.1.1</version>
|
| 100 | <scope>provided</scope>
|
| 101 | <optional>true</optional>
|
| 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>3.0.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>compile</scope>
|
| 126 | <optional>true</optional>
|
| 127 | </dependency>
|
| 128 | </dependencies>
|
| 129 | </project>
|