blob: 93f615ada264368612f58a22e92c7bc2e7818ef6 [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 Nodet05fac962009-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 Vanthienenf54a8392009-05-02 19:57:13 +000024 <groupId>org.apache.felix.karaf</groupId>
Freeman Yue Fangfe865a62009-05-14 06:16:32 +000025 <artifactId>karaf</artifactId>
Guillaume Nodete21429b2010-05-20 20:08:17 +000026 <version>1.7.0-SNAPSHOT</version>
Guillaume Nodet05fac962009-04-27 10:01:58 +000027 </parent>
28
Gert Vanthienenf54a8392009-05-02 19:57:13 +000029 <groupId>org.apache.felix.karaf</groupId>
30 <artifactId>org.apache.felix.karaf.client</artifactId>
Guillaume Nodet05fac962009-04-27 10:01:58 +000031 <packaging>bundle</packaging>
Guillaume Nodete21429b2010-05-20 20:08:17 +000032 <version>1.7.0-SNAPSHOT</version>
Gert Vanthienenf54a8392009-05-02 19:57:13 +000033 <name>Apache Felix Karaf :: Client</name>
Guillaume Nodet05fac962009-04-27 10:01:58 +000034
Guillaume Nodet23a0f3d2009-09-18 20:14:54 +000035 <properties>
36 <appendedResourcesDirectory>${basedir}/../etc/appended-resources</appendedResourcesDirectory>
37 </properties>
38
Guillaume Nodet05fac962009-04-27 10:01:58 +000039 <dependencies>
40 <dependency>
Guillaume Nodet129433d2009-07-09 08:29:14 +000041 <groupId>org.apache.sshd</groupId>
42 <artifactId>sshd-core</artifactId>
Guillaume Nodet05fac962009-04-27 10:01:58 +000043 </dependency>
44 <dependency>
Guillaume Nodetf529de32009-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 Nodet05fac962009-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 Nodet3daf0b52009-10-30 11:41:19 +000054 <artifactId>slf4j-simple</artifactId>
Guillaume Nodet05fac962009-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 Vanthienenf54a8392009-05-02 19:57:13 +000065 <Main-Class>org.apache.felix.karaf.client.Main</Main-Class>
Guillaume Nodet05fac962009-04-27 10:01:58 +000066 <Class-Path>
Guillaume Nodet0525a792009-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
Chris Custine80977a92010-05-16 08:24:14 +000069 ../system/org/apache/felix/karaf/shell/org.apache.felix.karaf.shell.console/${project.version}/org.apache.felix.karaf.shell.console-${project.version}.jar
Guillaume Nodet05fac962009-04-27 10:01:58 +000070 </Class-Path>
Guillaume Nodet1becb5b2009-05-04 07:56:47 +000071 <Bundle-Name>Apache Felix Karaf Shell Client</Bundle-Name>
Gert Vanthienenf54a8392009-05-02 19:57:13 +000072 <Bundle-Description>Shell client bundle for Apache Felix Karaf.</Bundle-Description>
Chris Custine80977a92010-05-16 08:24:14 +000073 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
74 <Export-Package>${project.artifactId}*;version=${project.version}</Export-Package>
Guillaume Nodet05fac962009-04-27 10:01:58 +000075 <Private-Package>
Gert Vanthienenf54a8392009-05-02 19:57:13 +000076 org.apache.felix.karaf.client;-split-package:=merge-first,
Guillaume Nodet05fac962009-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 Nodet05fac962009-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>