blob: 7083f0314798d08823c4142da7c80587e9721009 [file] [log] [blame]
Clement Escoffier4fc651e2010-05-08 07:34:42 +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-->
Clement Escoffierd20a28b2013-05-15 16:18:23 +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">
Clement Escoffier4fc651e2010-05-08 07:34:42 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000023 <version>2.1</version>
Clement Escoffier54534252013-06-12 12:46:17 +000024 <relativePath>../../../pom/pom.xml</relativePath>
Clement Escoffier4fc651e2010-05-08 07:34:42 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
Clement Escoffier54534252013-06-12 12:46:17 +000028 <name>Apache Felix iPOJO Gogo Command</name>
29 <artifactId>org.apache.felix.ipojo.gogo</artifactId>
Clement Escoffierc2410732013-06-16 07:11:23 +000030 <version>1.10.1</version>
Clement Escoffier4fc651e2010-05-08 07:34:42 +000031
32 <description>
Clement Escoffier54534252013-06-12 12:46:17 +000033 Provides commands for the Gogo shell to introspect the iPOJO ecosystem.
Clement Escoffier8c05b5b2010-07-18 16:05:19 +000034 </description>
Clement Escoffierb76fae72013-05-28 04:37:54 +000035 <url>
36 http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ipojo-arch-command.html
37 </url>
Clement Escoffier4fc651e2010-05-08 07:34:42 +000038
39 <dependencies>
40 <dependency>
41 <groupId>org.apache.felix</groupId>
42 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffierc2410732013-06-16 07:11:23 +000043 <version>1.10.1</version>
Clement Escoffier4fc651e2010-05-08 07:34:42 +000044 </dependency>
45 <dependency>
46 <groupId>org.apache.felix</groupId>
47 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
Clement Escoffierc2410732013-06-16 07:11:23 +000048 <version>1.10.1</version>
Clement Escoffier4fc651e2010-05-08 07:34:42 +000049 </dependency>
50 <dependency>
51 <groupId>org.osgi</groupId>
52 <artifactId>org.osgi.core</artifactId>
53 <version>4.2.0</version>
54 </dependency>
55 <dependency>
56 <groupId>org.osgi</groupId>
57 <artifactId>org.osgi.compendium</artifactId>
58 <version>4.0.0</version>
59 </dependency>
60 <dependency>
Clement Escoffierb84f62f2010-06-09 19:57:29 +000061 <groupId>org.apache.felix</groupId>
Clement Escoffier4fc651e2010-05-08 07:34:42 +000062 <artifactId>org.apache.felix.gogo.runtime</artifactId>
Clement Escoffier3cad63c2010-09-24 15:37:43 +000063 <version>0.6.1</version>
Clement Escoffier4fc651e2010-05-08 07:34:42 +000064 </dependency>
65 </dependencies>
66 <build>
67 <plugins>
68 <plugin>
69 <groupId>org.apache.maven.plugins</groupId>
70 <artifactId>maven-compiler-plugin</artifactId>
71 <configuration>
72 <source>1.5</source>
73 <target>1.5</target>
74 </configuration>
75 </plugin>
76 <plugin>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000079 <version>2.3.7</version>
Clement Escoffier4fc651e2010-05-08 07:34:42 +000080 <extensions>true</extensions>
81 <configuration>
82 <instructions>
83 <Bundle-Name>Apache Felix iPOJO Gogo Command</Bundle-Name>
84 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Clement Escoffiered4ca022013-03-13 15:27:20 +000085 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Clement Escoffier4fc651e2010-05-08 07:34:42 +000086 <Bundle-Description>
Clement Escoffier54534252013-06-12 12:46:17 +000087 Gogo commands for iPOJO
Clement Escoffier4fc651e2010-05-08 07:34:42 +000088 </Bundle-Description>
89 <Bundle-DocURL>
Clement Escoffierb76fae72013-05-28 04:37:54 +000090 http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ipojo-arch-command.html
Clement Escoffier4fc651e2010-05-08 07:34:42 +000091 </Bundle-DocURL>
92 <Private-Package>org.apache.felix.ipojo.arch.gogo</Private-Package>
Clement Escoffiered4ca022013-03-13 15:27:20 +000093 <Import-Package>
94 org.apache.felix.service.command;version=0.6.0, *
95 </Import-Package>
Clement Escoffier4fc651e2010-05-08 07:34:42 +000096 </instructions>
97 </configuration>
98 </plugin>
99 <plugin>
100 <groupId>org.apache.felix</groupId>
101 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierc2410732013-06-16 07:11:23 +0000102 <version>1.10.1</version>
Clement Escoffier4fc651e2010-05-08 07:34:42 +0000103 <executions>
104 <execution>
105 <goals>
106 <goal>ipojo-bundle</goal>
107 </goals>
108 </execution>
109 </executions>
110 </plugin>
111 <plugin>
Clement Escoffier4fc651e2010-05-08 07:34:42 +0000112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-checkstyle-plugin</artifactId>
114 <configuration>
115 <enableRulesSummary>false</enableRulesSummary>
116 <violationSeverity>warning</violationSeverity>
117 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
118 </configuration>
119 </plugin>
120 </plugins>
121 </build>
Clement Escoffierc2410732013-06-16 07:11:23 +0000122
123 <scm>
124 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.runtime-project-1.10.1/org.apache.felix.ipojo.gogo</connection>
125 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.runtime-project-1.10.1/org.apache.felix.ipojo.gogo</developerConnection>
126 <url>http://svn.apache.org/viewvc/felix/releases/?root=Apache-SVN/org.apache.felix.ipojo.runtime-project-1.10.1/org.apache.felix.ipojo.gogo</url>
127 </scm>
Clement Escoffier4fc651e2010-05-08 07:34:42 +0000128</project>