blob: 1b2866ae1bed9961d1f11c214583e40fc0f32271 [file] [log] [blame]
Guillaume Nodet916f28a2009-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 Nodet91fab3b2009-04-27 10:01:58 +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>
Gert Vanthienen607b8522009-05-02 19:57:13 +000024 <groupId>org.apache.felix.karaf</groupId>
Freeman Yue Fang3eb6d292009-05-14 06:16:32 +000025 <artifactId>karaf</artifactId>
Chris Custine130ecdd2010-02-19 07:50:10 +000026 <version>1.5.0-SNAPSHOT</version>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000027 </parent>
28
Gert Vanthienen607b8522009-05-02 19:57:13 +000029 <groupId>org.apache.felix.karaf</groupId>
30 <artifactId>org.apache.felix.karaf.client</artifactId>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000031 <packaging>bundle</packaging>
Chris Custine130ecdd2010-02-19 07:50:10 +000032 <version>1.5.0-SNAPSHOT</version>
Gert Vanthienen607b8522009-05-02 19:57:13 +000033 <name>Apache Felix Karaf :: Client</name>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000034
Guillaume Nodet91a52c02009-09-18 20:14:54 +000035 <properties>
36 <appendedResourcesDirectory>${basedir}/../etc/appended-resources</appendedResourcesDirectory>
37 </properties>
38
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000039 <dependencies>
40 <dependency>
Guillaume Nodet077bac52009-07-09 08:29:14 +000041 <groupId>org.apache.sshd</groupId>
42 <artifactId>sshd-core</artifactId>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000043 </dependency>
44 <dependency>
Guillaume Nodet32631462009-10-28 18:59:18 +000045 <groupId>org.apache.felix.karaf.shell</groupId>
46 <artifactId>org.apache.felix.karaf.shell.console</artifactId>
47 </dependency>
48 <dependency>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000049 <groupId>org.slf4j</groupId>
50 <artifactId>slf4j-api</artifactId>
51 </dependency>
52 <dependency>
53 <groupId>org.slf4j</groupId>
Guillaume Nodet36ac3a42009-10-30 11:41:19 +000054 <artifactId>slf4j-simple</artifactId>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000055 </dependency>
56 </dependencies>
57 <build>
58 <plugins>
59 <plugin>
60 <groupId>org.apache.felix</groupId>
61 <artifactId>maven-bundle-plugin</artifactId>
62 <configuration>
63 <instructions>
64 <_donotcopy>(CVS|.svn|config.properties)</_donotcopy>
Gert Vanthienen607b8522009-05-02 19:57:13 +000065 <Main-Class>org.apache.felix.karaf.client.Main</Main-Class>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000066 <Class-Path>
Guillaume Nodet6902c052009-05-03 20:01:02 +000067 ../system/org/apache/sshd/sshd-core/${sshd.version}/sshd-core-${sshd.version}.jar
68 ../system/org/apache/mina/mina-core/${mina.version}/mina-core-${mina.version}.jar
Guillaume Nodet91a52c02009-09-18 20:14:54 +000069 ../system/org/apache/felix/karaf/shell/org.apache.felix.karaf.shell.console/${pom.version}/org.apache.felix.karaf.shell.console-${pom.version}.jar
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000070 </Class-Path>
Guillaume Nodet874ecc82009-05-04 07:56:47 +000071 <Bundle-Name>Apache Felix Karaf Shell Client</Bundle-Name>
Gert Vanthienen607b8522009-05-02 19:57:13 +000072 <Bundle-Description>Shell client bundle for Apache Felix Karaf.</Bundle-Description>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000073 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Guillaume Nodet3e9a4282009-05-04 16:30:02 +000074 <Export-Package>${pom.artifactId}*;version=${project.version}</Export-Package>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000075 <Private-Package>
Gert Vanthienen607b8522009-05-02 19:57:13 +000076 org.apache.felix.karaf.client;-split-package:=merge-first,
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000077 org.slf4j;-split-package:=merge-first,
78 org.slf4j.spi;-split-package:=merge-first,
79 org.slf4j.helpers;-split-package:=merge-first,
80 org.slf4j.impl;-split-package:=merge-first,
81 META-INF;-split-package:=merge-first
82 </Private-Package>
83 <Import-Package>!*</Import-Package>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000084 </instructions>
85 <unpackBundle>true</unpackBundle>
86 </configuration>
87 </plugin>
88 <plugin>
89 <groupId>org.apache.maven.plugins</groupId>
90 <artifactId>maven-shade-plugin</artifactId>
91 <executions>
92 <execution>
93 <phase>package</phase>
94 <goals>
95 <goal>shade</goal>
96 </goals>
97 <configuration>
98 <artifactSet>
99 <includes>
100 <include>${project.groupId}:${project.artifactId}</include>
101 <include>org.slf4j:slf4j-api</include>
102 <include>org.slf4j:slf4j-nop</include>
103 </includes>
104 </artifactSet>
105 <filters>
106 <filter>
107 <artifact>org.slf4j:slf4j-api</artifact>
108 <excludes>
109 <exclude>org/slf4j/**</exclude>
110 </excludes>
111 </filter>
112 <filter>
113 <artifact>org.slf4j:slf4j-nop</artifact>
114 <excludes>
115 <exclude>org/slf4j/**</exclude>
116 </excludes>
117 </filter>
118 </filters>
119 <createSourcesJar>${createSourcesJar}</createSourcesJar>
120 <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
121 <createDependencyReducedPom>true</createDependencyReducedPom>
122 </configuration>
123 </execution>
124 </executions>
125 </plugin>
126 </plugins>
127 <resources>
128 <resource>
129 <directory>src/main/resources</directory>
130 <filtering>true</filtering>
131 </resource>
132 </resources>
133 </build>
134
135
136</project>