blob: 895142725819ec38df6394794bbf31ac7f427d83 [file] [log] [blame]
Valentin Valchev32cf3b12011-09-12 14:45:53 +00001<!-- 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.shell</artifactId>
23 <packaging>bundle</packaging>
24 <version>1.0.0-SNAPSHOT</version>
25
26 <name>Apache Felix Web Console Shell Plugin</name>
27 <description>
28 This is a plugin for the Apache Felix OSGi web console that provides access to shell/console commands.
29 </description>
30
31 <scm>
32 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/shell</connection>
33 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/shell</developerConnection>
34 <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/shell</url>
35 </scm>
36
37 <build>
Valentin Valchev55198aa2012-04-05 12:22:28 +000038 <!-- 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 Valchev32cf3b12011-09-12 14:45:53 +000052 <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 Meschbergerd7274052011-12-17 13:57:38 +000057 <version>1.0-beta-1</version>
Valentin Valchev32cf3b12011-09-12 14:45:53 +000058 <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.shell.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>org.osgi</groupId>
98 <artifactId>org.osgi.core</artifactId>
99 <version>4.0.0</version>
100 <scope>provided</scope>
101 </dependency>
102 <dependency>
103 <groupId>org.osgi</groupId>
104 <artifactId>org.osgi.compendium</artifactId>
105 <version>4.1.0</version>
106 <scope>provided</scope>
107 </dependency>
108 <dependency>
109 <groupId>org.json</groupId>
110 <artifactId>json</artifactId>
111 <version>20070829</version>
112 <scope>compile</scope>
113 <optional>true</optional>
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.apache.felix</groupId>
123 <artifactId>org.apache.felix.shell</artifactId>
124 <version>1.0.0</version>
125 <scope>provided</scope>
126 </dependency>
127 </dependencies>
128</project>