blob: 99d46cc9ff734d9bfcc9dd1cd265686e79b305c8 [file] [log] [blame]
Guillaume Nodet6896d702009-09-22 09:11:12 +00001<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">
Guillaume Nodet129433d2009-07-09 08:29:14 +00002
3 <!--
4
5 Licensed to the Apache Software Foundation (ASF) under one or more
6 contributor license agreements. See the NOTICE file distributed with
7 this work for additional information regarding copyright ownership.
8 The ASF licenses this file to You under the Apache License, Version 2.0
9 (the "License"); you may not use this file except in compliance with
10 the License. You may obtain a copy of the License at
11
12 http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 -->
20
21 <modelVersion>4.0.0</modelVersion>
22
23 <parent>
Guillaume Nodet23a0f3d2009-09-18 20:14:54 +000024 <groupId>org.apache.felix.karaf.shell</groupId>
25 <artifactId>shell</artifactId>
Guillaume Nodet6f17f4f2009-09-22 09:15:21 +000026 <version>1.1.0-SNAPSHOT</version>
Guillaume Nodet129433d2009-07-09 08:29:14 +000027 </parent>
28
Guillaume Nodet23a0f3d2009-09-18 20:14:54 +000029 <groupId>org.apache.felix.karaf.shell</groupId>
30 <artifactId>org.apache.felix.karaf.shell.console</artifactId>
Guillaume Nodet129433d2009-07-09 08:29:14 +000031 <packaging>bundle</packaging>
Guillaume Nodet6f17f4f2009-09-22 09:15:21 +000032 <version>1.1.0-SNAPSHOT</version>
Guillaume Nodet23a0f3d2009-09-18 20:14:54 +000033 <name>Apache Felix Karaf :: Shell Console</name>
Guillaume Nodet129433d2009-07-09 08:29:14 +000034
35 <description>
Guillaume Nodet23a0f3d2009-09-18 20:14:54 +000036 Provides the OSGi Shell integration
Guillaume Nodet129433d2009-07-09 08:29:14 +000037 </description>
38
Guillaume Nodete73545e2009-09-18 20:25:06 +000039 <properties>
40 <appendedResourcesDirectory>${basedir}/../../etc/appended-resources</appendedResourcesDirectory>
41 </properties>
42
Guillaume Nodet129433d2009-07-09 08:29:14 +000043 <dependencies>
44 <dependency>
Guillaume Nodetcb2db1b2009-07-10 06:56:47 +000045 <groupId>jline</groupId>
46 <artifactId>jline</artifactId>
47 </dependency>
48 <dependency>
49 <groupId>org.fusesource.jansi</groupId>
50 <artifactId>jansi</artifactId>
Guillaume Nodet129433d2009-07-09 08:29:14 +000051 </dependency>
52 <dependency>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>org.osgi.core</artifactId>
55 <scope>provided</scope>
56 </dependency>
57 <dependency>
58 <groupId>org.apache.felix</groupId>
59 <artifactId>org.osgi.compendium</artifactId>
60 <scope>provided</scope>
61 </dependency>
62 <dependency>
Guillaume Nodet60dc3482009-09-14 13:13:16 +000063 <groupId>org.apache.geronimo.blueprint</groupId>
64 <artifactId>geronimo-blueprint</artifactId>
Guillaume Nodet129433d2009-07-09 08:29:14 +000065 </dependency>
66 <dependency>
67 <groupId>org.apache.felix.gogo</groupId>
68 <artifactId>org.apache.felix.gogo.runtime</artifactId>
69 </dependency>
70 <dependency>
71 <groupId>org.apache.felix.gogo</groupId>
72 <artifactId>org.apache.felix.gogo.commands</artifactId>
73 </dependency>
74 </dependencies>
75
76 <build>
77 <resources>
78 <resource>
79 <directory>${pom.basedir}/src/main/resources</directory>
80 <includes>
81 <include>**/*</include>
82 </includes>
83 </resource>
84 <resource>
85 <directory>${pom.basedir}/src/main/filtered-resources</directory>
86 <filtering>true</filtering>
87 <includes>
88 <include>**/*</include>
89 </includes>
90 </resource>
91 </resources>
92 <plugins>
93 <plugin>
94 <groupId>org.codehaus.mojo</groupId>
95 <artifactId>exec-maven-plugin</artifactId>
96 <configuration>
97 <mainClass>Main</mainClass>
98 </configuration>
99 </plugin>
100 <plugin>
101 <groupId>org.apache.felix</groupId>
102 <artifactId>maven-bundle-plugin</artifactId>
103 <configuration>
104 <instructions>
105 <Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName>
106 <Import-Package>
Guillaume Nodet23a0f3d2009-09-18 20:14:54 +0000107 !org.apache.felix.karaf.shell.console*,
Guillaume Nodetcb2db1b2009-07-10 06:56:47 +0000108 !org.apache.felix.gogo.commands*,
Guillaume Nodete73545e2009-09-18 20:25:06 +0000109 !org.fusesource.jansi*,
110 !javax.swing,
Guillaume Nodetcb2db1b2009-07-10 06:56:47 +0000111 !jline,
112 com.sun.jna*;resolution:=optional,
Guillaume Nodete668bc32009-07-27 08:03:39 +0000113 org.apache.felix.karaf.branding;resolution:=optional,
Guillaume Nodet129433d2009-07-09 08:29:14 +0000114 *
115 </Import-Package>
116 <Export-Package>
Guillaume Nodetcb2db1b2009-07-10 06:56:47 +0000117 org.apache.felix.gogo.commands*;version=${felix.gogo.version},
Guillaume Nodet23a0f3d2009-09-18 20:14:54 +0000118 org.apache.felix.karaf.shell.console*;version=${pom.version},
Guillaume Nodetcb2db1b2009-07-10 06:56:47 +0000119 org.fusesource.jansi;version=${jansi.version},
Chris Custine5c5f7902009-11-06 05:14:37 +0000120 jline;version=${jline.version}
Guillaume Nodet129433d2009-07-09 08:29:14 +0000121 </Export-Package>
Guillaume Nodetcb2db1b2009-07-10 06:56:47 +0000122 <Private-Package>
123 org.fusesource.jansi.internal
124 </Private-Package>
Guillaume Nodet129433d2009-07-09 08:29:14 +0000125 <_versionpolicy>${bnd.version.policy}</_versionpolicy>
126 </instructions>
127 <unpackBundle>true</unpackBundle>
128 </configuration>
129 </plugin>
130 </plugins>
131 </build>
132</project>