blob: 2184188fb5cc7058be00547285a05dbdce508f7c [file] [log] [blame]
Guillaume Nodet907d4b12009-06-30 20:52:04 +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-->
Guillaume Nodetcf6fe212009-09-08 20:19:54 +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">
Guillaume Nodet907d4b12009-06-30 20:52:04 +000020 <parent>
Richard S. Halldf4169f2010-05-24 19:03:10 +000021 <groupId>org.apache.felix</groupId>
22 <artifactId>gogo-parent</artifactId>
Karl Pauls2decfb82010-09-22 20:14:17 +000023 <version>0.6.0</version>
Karl Pauls14f14db2010-06-06 20:39:11 +000024 <relativePath>../gogo-parent/pom.xml</relativePath>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
Derek Baumbd5b6082010-05-13 17:32:34 +000028 <name>Apache Felix Gogo Shell</name>
29 <artifactId>org.apache.felix.gogo.shell</artifactId>
Richard S. Halla201ae52011-06-16 15:50:18 +000030 <version>0.11.0-SNAPSHOT</version>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000031 <dependencies>
32 <dependency>
Richard S. Halldf4169f2010-05-24 19:03:10 +000033 <groupId>org.osgi</groupId>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000034 <artifactId>org.osgi.core</artifactId>
Richard S. Halldf4169f2010-05-24 19:03:10 +000035 <version>4.2.0</version>
36 <scope>provided</scope>
37 </dependency>
38 <dependency>
39 <groupId>org.osgi</groupId>
40 <artifactId>org.osgi.compendium</artifactId>
41 <version>4.0.0</version>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000042 <scope>provided</scope>
43 </dependency>
44 <dependency>
45 <groupId>org.apache.felix</groupId>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000046 <artifactId>org.apache.felix.gogo.runtime</artifactId>
Richard S. Hall5dfc9ad2011-06-16 15:47:23 +000047 <version>0.10.0</version>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000048 </dependency>
49 </dependencies>
50 <build>
51 <plugins>
52 <plugin>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>maven-bundle-plugin</artifactId>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000055 <extensions>true</extensions>
56 <configuration>
57 <instructions>
58 <Export-Package>
59 </Export-Package>
60 <Import-Package>
Richard S. Hall4c248592010-09-20 19:25:21 +000061 org.apache.felix.service.command; status="provisional",
Guillaume Nodet907d4b12009-06-30 20:52:04 +000062 *
63 </Import-Package>
Derek Baumbd5b6082010-05-13 17:32:34 +000064 <Private-Package>
65 org.apache.felix.gogo.shell,
66 org.apache.felix.gogo.options
67 </Private-Package>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000068 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
69 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Derek Baumbd5b6082010-05-13 17:32:34 +000070 <Bundle-Activator>org.apache.felix.gogo.shell.Activator</Bundle-Activator>
Richard S. Hall2a4d8f52010-05-28 18:40:02 +000071 <Include-Resource>{maven-resources},META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES</Include-Resource>
Guillaume Nodet46c90a92009-09-02 06:46:25 +000072 <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
Guillaume Nodet44d9d022009-09-08 20:09:15 +000073 <_removeheaders>Private-Package,Ignore-Package,Include-Resource</_removeheaders>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000074 </instructions>
75 </configuration>
76 </plugin>
77 <plugin>
78 <groupId>org.codehaus.mojo</groupId>
79 <artifactId>rat-maven-plugin</artifactId>
80 <configuration>
81 <excludeSubProjects>false</excludeSubProjects>
82 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
83 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
84 <excludes>
85 <param>doc/*</param>
86 <param>maven-eclipse.xml</param>
87 <param>.checkstyle</param>
88 <param>.externalToolBuilders/*</param>
89 </excludes>
90 </configuration>
91 </plugin>
92 <plugin>
93 <artifactId>maven-compiler-plugin</artifactId>
94 <configuration>
95 <source>1.5</source>
96 <target>1.5</target>
97 </configuration>
98 </plugin>
99 </plugins>
100 </build>
Guillaume Nodet907d4b12009-06-30 20:52:04 +0000101</project>