blob: e155deb398dcd2ff4a83761934a55280d26d246e [file] [log] [blame]
Felix Meschberger97204d82012-01-31 12:47:45 +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>2.1</version>
19 <relativePath>../../../pom/pom.xml</relativePath>
20 </parent>
21
22 <artifactId>org.apache.felix.webconsole.plugins.gogo</artifactId>
23 <packaging>bundle</packaging>
24 <version>0.0.1-SNAPSHOT</version>
25
26 <name>Apache Felix Web Gogo Shell Plugin</name>
27 <description>
28 This is a plugin for the Apache Felix OSGi web console that provides access to Gogo shell commands.
29 </description>
30
31 <properties>
32 <dollar>$</dollar>
33 </properties>
34
35 <scm>
36 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/gogo</connection>
37 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/gogo</developerConnection>
38 <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/gogo</url>
39 </scm>
40
41 <build>
42 <plugins>
43 <!-- translate UTF-8 encoded properties files to ISO-8859-1 -->
44 <plugin>
45 <groupId>org.codehaus.mojo</groupId>
46 <artifactId>native2ascii-maven-plugin</artifactId>
47 <version>1.0-beta-1</version>
48 <executions>
49 <execution>
50 <goals>
51 <goal>native2ascii</goal>
52 </goals>
53 <configuration>
54 <encoding>UTF-8</encoding>
55 </configuration>
56 </execution>
57 </executions>
58 </plugin>
59
60 <plugin>
Felix Meschberger97204d82012-01-31 12:47:45 +000061 <artifactId>maven-compiler-plugin</artifactId>
62 <configuration>
63 <source>1.5</source>
64 <target>1.5</target>
65 </configuration>
66 </plugin>
67
68 <plugin>
69 <groupId>org.apache.felix</groupId>
70 <artifactId>maven-bundle-plugin</artifactId>
71 <version>2.3.6</version>
72 <extensions>true</extensions>
73 <configuration>
74 <instructions>
75 <Bundle-SymbolicName>
76 ${project.artifactId}
77 </Bundle-SymbolicName>
78 <Bundle-Activator>
79 org.apache.felix.webconsole.plugins.gogo.impl.Activator
80 </Bundle-Activator>
81 <Embed-Dependency>
82 jline;inline=true
83 </Embed-Dependency>
84 <Bundle-NativeCode>
85 META-INF/native/windows32/jansi.dll;osname=Win32;processor=x86,
86 META-INF/native/windows64/jansi.dll;osname=Win32;processor=x86-64,
Felix Meschberger2a869062012-01-31 13:03:33 +000087 <!--
Felix Meschberger97204d82012-01-31 12:47:45 +000088 META-INF/native/linux32/libjansi.so;osname=Linux;processor=x86,
89 META-INF/native/linux64/libjansi.so;osname=Linux;processor=x86-64,
90 META-INF/native/osx/libjansi.jnilib;osname=MacOSX,
Felix Meschberger2a869062012-01-31 13:03:33 +000091 -->
Felix Meschberger97204d82012-01-31 12:47:45 +000092 *
93 </Bundle-NativeCode>
94 </instructions>
95 </configuration>
96 </plugin>
97 </plugins>
98 </build>
99
100 <dependencies>
101 <dependency>
102 <groupId>org.apache.felix</groupId>
103 <artifactId>org.apache.felix.gogo.runtime</artifactId>
104 <version>0.6.1</version>
105 <scope>provided</scope>
106 </dependency>
107 <dependency>
108 <groupId>org.osgi</groupId>
109 <artifactId>org.osgi.core</artifactId>
110 <version>4.0.0</version>
111 <scope>provided</scope>
112 </dependency>
113 <dependency>
114 <groupId>org.osgi</groupId>
115 <artifactId>org.osgi.compendium</artifactId>
116 <version>4.0.0</version>
117 <scope>provided</scope>
118 </dependency>
119 <dependency>
Felix Meschberger97204d82012-01-31 12:47:45 +0000120 <groupId>org.apache.felix</groupId>
121 <artifactId>org.apache.felix.webconsole</artifactId>
122 <version>3.0.0</version>
123 <scope>provided</scope>
124 </dependency>
125 <dependency>
126 <groupId>javax.servlet</groupId>
127 <artifactId>servlet-api</artifactId>
128 <version>2.3</version>
129 <scope>provided</scope>
130 </dependency>
131 <dependency>
132 <groupId>org.sonatype.jline</groupId>
133 <artifactId>jline</artifactId>
134 <version>2.5</version>
135 <scope>provided</scope>
136 </dependency>
Felix Meschberger97204d82012-01-31 12:47:45 +0000137 </dependencies>
138</project>