blob: b2be2f237d432c77997ade2195944e9a9210d80a [file] [log] [blame]
Karl Pauls4ebe5082006-10-30 15:00:08 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
Carsten Ziegeler4fec0962008-01-11 16:13:31 +000019<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">
Alex Karasulu07d20492006-03-06 15:35:44 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
Karl Pauls4f093202009-09-06 21:34:16 +000022 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000024 <relativePath>../pom/pom.xml</relativePath>
Alex Karasulu07d20492006-03-06 15:35:44 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
Richard S. Hall1da4e542006-11-02 21:45:44 +000027 <packaging>bundle</packaging>
28 <name>Apache Felix Shell TUI</name>
29 <description>A simple textual user interface for Felix' shell service.</description>
Karl Paulsa28b6b22009-10-11 21:12:05 +000030 <version>1.5.0-SNAPSHOT</version>
Alex Karasulu07d20492006-03-06 15:35:44 +000031 <artifactId>org.apache.felix.shell.tui</artifactId>
32 <dependencies>
33 <dependency>
Karl Pauls1d7fb592009-09-30 21:05:27 +000034 <groupId>org.osgi</groupId>
Michael E. Rodriguez963719b2006-04-03 15:04:03 +000035 <artifactId>org.osgi.core</artifactId>
Karl Pauls1d7fb592009-09-30 21:05:27 +000036 <version>4.0.0</version>
Alex Karasulu07d20492006-03-06 15:35:44 +000037 </dependency>
38 <dependency>
39 <groupId>${pom.groupId}</groupId>
40 <artifactId>org.apache.felix.shell</artifactId>
Richard S. Hallfe7df942009-12-09 21:42:38 +000041 <version>1.4.1</version>
Alex Karasulu07d20492006-03-06 15:35:44 +000042 </dependency>
43 </dependencies>
44 <build>
45 <plugins>
46 <plugin>
Richard S. Hall1da4e542006-11-02 21:45:44 +000047 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000048 <artifactId>maven-bundle-plugin</artifactId>
Richard S. Hallb1f567b2008-08-12 16:19:39 +000049 <version>1.4.3</version>
Alex Karasulu28b89b62006-03-07 02:51:53 +000050 <extensions>true</extensions>
Alex Karasulu07d20492006-03-06 15:35:44 +000051 <configuration>
Richard S. Hall1da4e542006-11-02 21:45:44 +000052 <instructions>
53 <Private-Package>org.apache.felix.shell.tui.*</Private-Package>
54 <Bundle-Activator>org.apache.felix.shell.tui.Activator</Bundle-Activator>
Richard S. Hallf2fd4c42009-05-11 15:19:15 +000055 <Bundle-DocURL>http://felix.apache.org/site/apache-felix-shell-tui.html</Bundle-DocURL>
Richard S. Hall1da4e542006-11-02 21:45:44 +000056 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000057 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Richard S. Hall1da4e542006-11-02 21:45:44 +000058 <Import-Service>org.apache.felix.shell.ShellService</Import-Service>
59 </instructions>
Alex Karasulu07d20492006-03-06 15:35:44 +000060 </configuration>
61 </plugin>
Karl Paulsbc29cfc2009-03-31 21:01:40 +000062 <plugin>
63 <groupId>org.codehaus.mojo</groupId>
64 <artifactId>rat-maven-plugin</artifactId>
65 <configuration>
66 <excludeSubProjects>false</excludeSubProjects>
67 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
68 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
69 <excludes>
70 <param>doc/*</param>
71 <param>maven-eclipse.xml</param>
72 <param>.checkstyle</param>
73 <param>.externalToolBuilders/*</param>
74 </excludes>
75 </configuration>
76 </plugin>
Alex Karasulu07d20492006-03-06 15:35:44 +000077 </plugins>
78 </build>
Alex Karasulu07d20492006-03-06 15:35:44 +000079</project>