Karl Pauls | 4ebe508 | 2006-10-30 15:00:08 +0000 | [diff] [blame] | 1 | <!-- |
| 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 Ziegeler | 4fec096 | 2008-01-11 16:13:31 +0000 | [diff] [blame] | 19 | <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 Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
Karl Pauls | b11e9af | 2009-09-06 21:15:10 +0000 | [diff] [blame] | 22 | <artifactId>felix-parent</artifactId> |
Richard S. Hall | a4dc686 | 2012-03-06 14:29:42 +0000 | [diff] [blame] | 23 | <version>2.1</version> |
Karl Pauls | b11e9af | 2009-09-06 21:15:10 +0000 | [diff] [blame] | 24 | <relativePath>../pom/pom.xml</relativePath> </parent> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 25 | <modelVersion>4.0.0</modelVersion> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 26 | <packaging>bundle</packaging> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 27 | <name>Apache Felix Shell Service</name> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 28 | <description>A simple OSGi command shell service.</description> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 29 | <artifactId>org.apache.felix.shell</artifactId> |
Karl Pauls | 5339853 | 2012-03-06 15:03:54 +0000 | [diff] [blame] | 30 | <version>1.5.0-SNAPSHOT</version> |
Karl Pauls | 4e38593 | 2012-03-06 15:00:41 +0000 | [diff] [blame] | 31 | <scm> |
Karl Pauls | 5339853 | 2012-03-06 15:03:54 +0000 | [diff] [blame] | 32 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/shell</connection> |
| 33 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/shell</developerConnection> |
| 34 | <url>http://svn.apache.org/repos/asf/felix/shell</url> |
Karl Pauls | 4e38593 | 2012-03-06 15:00:41 +0000 | [diff] [blame] | 35 | </scm> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 36 | <dependencies> |
| 37 | <dependency> |
Karl Pauls | 1d7fb59 | 2009-09-30 21:05:27 +0000 | [diff] [blame] | 38 | <groupId>org.osgi</groupId> |
Michael E. Rodriguez | 963719b | 2006-04-03 15:04:03 +0000 | [diff] [blame] | 39 | <artifactId>org.osgi.core</artifactId> |
Karl Pauls | 1d7fb59 | 2009-09-30 21:05:27 +0000 | [diff] [blame] | 40 | <version>4.1.0</version> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 41 | </dependency> |
Richard S. Hall | ca0578c | 2009-04-27 20:48:00 +0000 | [diff] [blame] | 42 | <dependency> |
Karl Pauls | 1d7fb59 | 2009-09-30 21:05:27 +0000 | [diff] [blame] | 43 | <groupId>org.osgi</groupId> |
Richard S. Hall | ca0578c | 2009-04-27 20:48:00 +0000 | [diff] [blame] | 44 | <artifactId>org.osgi.compendium</artifactId> |
Karl Pauls | 1d7fb59 | 2009-09-30 21:05:27 +0000 | [diff] [blame] | 45 | <version>4.0.0</version> |
Richard S. Hall | ca0578c | 2009-04-27 20:48:00 +0000 | [diff] [blame] | 46 | </dependency> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 47 | </dependencies> |
| 48 | <build> |
| 49 | <plugins> |
| 50 | <plugin> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 51 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 52 | <artifactId>maven-bundle-plugin</artifactId> |
Richard S. Hall | a4dc686 | 2012-03-06 14:29:42 +0000 | [diff] [blame] | 53 | <version>2.3.7</version> |
Alex Karasulu | bfd9996 | 2006-03-07 02:35:38 +0000 | [diff] [blame] | 54 | <extensions>true</extensions> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 55 | <configuration> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 56 | <instructions> |
Richard S. Hall | ca0578c | 2009-04-27 20:48:00 +0000 | [diff] [blame] | 57 | <Export-Package>org.osgi.service.log, org.apache.felix.shell; org.ungoverned.osgi.service.shell; version=1.0.0</Export-Package> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 58 | <Private-Package>org.apache.felix.*</Private-Package> |
Richard S. Hall | 1f1e2ef | 2006-12-15 21:30:13 +0000 | [diff] [blame] | 59 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 60 | <Bundle-Activator>org.apache.felix.shell.impl.Activator</Bundle-Activator> |
Carsten Ziegeler | cf6e51b | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 61 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 62 | <Export-Service>org.apache.felix.shell.ShellService, org.ungoverned.osgi.service.shell.ShellService</Export-Service> |
| 63 | <Import-Service>org.osgi.service.startlevel.StartLevel, org.osgi.service.packageadmin.PackageAdmin</Import-Service> |
| 64 | </instructions> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 65 | </configuration> |
| 66 | </plugin> |
Karl Pauls | a8a7a52 | 2009-03-31 20:42:19 +0000 | [diff] [blame] | 67 | <plugin> |
| 68 | <groupId>org.codehaus.mojo</groupId> |
| 69 | <artifactId>rat-maven-plugin</artifactId> |
| 70 | <configuration> |
| 71 | <excludeSubProjects>false</excludeSubProjects> |
| 72 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 73 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 74 | <excludes> |
| 75 | <param>doc/*</param> |
| 76 | <param>maven-eclipse.xml</param> |
| 77 | <param>.checkstyle</param> |
| 78 | <param>.externalToolBuilders/*</param> |
| 79 | </excludes> |
| 80 | </configuration> |
| 81 | </plugin> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 82 | </plugins> |
| 83 | </build> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 84 | </project> |