blob: 2ff109f7a561a1b2b3a94ec9808eb45ff04c3b3e [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-->
19<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21 <parent>
22 <groupId>org.apache.felix.gogo</groupId>
23 <artifactId>gogo</artifactId>
Richard S. Halld8c88e02009-07-03 21:29:18 +000024 <version>0.9.0-SNAPSHOT</version>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Apache Felix Gogo Shell Console</name>
29 <artifactId>org.apache.felix.gogo.console</artifactId>
Richard S. Halld8c88e02009-07-03 21:29:18 +000030 <version>0.9.0-SNAPSHOT</version>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000031 <dependencies>
32 <dependency>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>org.osgi.core</artifactId>
35 <scope>provided</scope>
36 </dependency>
37 <dependency>
38 <groupId>org.apache.felix</groupId>
39 <artifactId>org.osgi.compendium</artifactId>
40 <scope>provided</scope>
41 </dependency>
42 <dependency>
43 <groupId>org.apache.felix.gogo</groupId>
44 <artifactId>org.apache.felix.gogo.runtime</artifactId>
45 </dependency>
46 </dependencies>
47 <build>
48 <plugins>
49 <plugin>
50 <groupId>org.apache.felix</groupId>
51 <artifactId>maven-bundle-plugin</artifactId>
52 <version>2.0.0</version>
53 <extensions>true</extensions>
54 <configuration>
55 <instructions>
56 <Export-Package>
57 </Export-Package>
58 <Import-Package>
59 org.osgi.service.component*; resolution:=optional,
60 org.osgi.service.log*; resolution:=optional,
61 org.osgi.service.packageadmin*; resolution:=optional,
62 org.osgi.service.startlevel*; resolution:=optional,
63 *
64 </Import-Package>
65 <Private-Package>org.apache.felix.gogo.*</Private-Package>
66 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
67 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
68 <Bundle-Activator>org.apache.felix.gogo.console.Activator</Bundle-Activator>
69 </instructions>
70 </configuration>
71 </plugin>
72 <plugin>
73 <groupId>org.codehaus.mojo</groupId>
74 <artifactId>rat-maven-plugin</artifactId>
75 <configuration>
76 <excludeSubProjects>false</excludeSubProjects>
77 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
78 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
79 <excludes>
80 <param>doc/*</param>
81 <param>maven-eclipse.xml</param>
82 <param>.checkstyle</param>
83 <param>.externalToolBuilders/*</param>
84 </excludes>
85 </configuration>
86 </plugin>
87 <plugin>
88 <artifactId>maven-compiler-plugin</artifactId>
89 <configuration>
90 <source>1.5</source>
91 <target>1.5</target>
92 </configuration>
93 </plugin>
94 </plugins>
95 </build>
96</project>