blob: 1ef0e147c561968a1a6c0da0558be34c47510a58 [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 Escoffier4fc651e2010-05-08 07:34:42 +000024 <relativePath>../../pom/pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Apache Felix iPOJO Arch Gogo Command</name>
29 <artifactId>org.apache.felix.ipojo.arch.gogo</artifactId>
Clement Escoffier124169d2013-05-15 16:18:44 +000030 <version>1.1.1-SNAPSHOT</version>
Clement Escoffier4fc651e2010-05-08 07:34:42 +000031
32 <description>
Clement Escoffiered4ca022013-03-13 15:27:20 +000033 Arch command to collect and print information about iPOJO instances.
34 This command is made for Gogo.
Clement Escoffier8c05b5b2010-07-18 16:05:19 +000035 </description>
Clement Escoffierb76fae72013-05-28 04:37:54 +000036 <url>
37 http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ipojo-arch-command.html
38 </url>
Clement Escoffier4fc651e2010-05-08 07:34:42 +000039
40 <dependencies>
41 <dependency>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffierc34ba5c2013-05-16 08:12:53 +000044 <version>1.10.1-SNAPSHOT</version>
Clement Escoffier4fc651e2010-05-08 07:34:42 +000045 </dependency>
46 <dependency>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
Clement Escoffierc34ba5c2013-05-16 08:12:53 +000049 <version>1.10.1-SNAPSHOT</version>
Clement Escoffier4fc651e2010-05-08 07:34:42 +000050 </dependency>
51 <dependency>
52 <groupId>org.osgi</groupId>
53 <artifactId>org.osgi.core</artifactId>
54 <version>4.2.0</version>
55 </dependency>
56 <dependency>
57 <groupId>org.osgi</groupId>
58 <artifactId>org.osgi.compendium</artifactId>
59 <version>4.0.0</version>
60 </dependency>
61 <dependency>
Clement Escoffierb84f62f2010-06-09 19:57:29 +000062 <groupId>org.apache.felix</groupId>
Clement Escoffier4fc651e2010-05-08 07:34:42 +000063 <artifactId>org.apache.felix.gogo.runtime</artifactId>
Clement Escoffier3cad63c2010-09-24 15:37:43 +000064 <version>0.6.1</version>
Clement Escoffier4fc651e2010-05-08 07:34:42 +000065 </dependency>
66 </dependencies>
67 <build>
68 <plugins>
69 <plugin>
70 <groupId>org.apache.maven.plugins</groupId>
71 <artifactId>maven-compiler-plugin</artifactId>
72 <configuration>
73 <source>1.5</source>
74 <target>1.5</target>
75 </configuration>
76 </plugin>
77 <plugin>
78 <groupId>org.apache.felix</groupId>
79 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000080 <version>2.3.7</version>
Clement Escoffier4fc651e2010-05-08 07:34:42 +000081 <extensions>true</extensions>
82 <configuration>
83 <instructions>
84 <Bundle-Name>Apache Felix iPOJO Gogo Command</Bundle-Name>
85 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Clement Escoffiered4ca022013-03-13 15:27:20 +000086 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Clement Escoffier4fc651e2010-05-08 07:34:42 +000087 <Bundle-Description>
88 iPOJO Arch command for Gogo
89 </Bundle-Description>
90 <Bundle-DocURL>
Clement Escoffierb76fae72013-05-28 04:37:54 +000091 http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ipojo-arch-command.html
Clement Escoffier4fc651e2010-05-08 07:34:42 +000092 </Bundle-DocURL>
93 <Private-Package>org.apache.felix.ipojo.arch.gogo</Private-Package>
Clement Escoffiered4ca022013-03-13 15:27:20 +000094 <Import-Package>
95 org.apache.felix.service.command;version=0.6.0, *
96 </Import-Package>
Clement Escoffier4fc651e2010-05-08 07:34:42 +000097 </instructions>
98 </configuration>
99 </plugin>
100 <plugin>
101 <groupId>org.apache.felix</groupId>
102 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierc34ba5c2013-05-16 08:12:53 +0000103 <version>1.10.1-SNAPSHOT</version>
Clement Escoffier4fc651e2010-05-08 07:34:42 +0000104 <executions>
105 <execution>
106 <goals>
107 <goal>ipojo-bundle</goal>
108 </goals>
109 </execution>
110 </executions>
111 </plugin>
112 <plugin>
Clement Escoffier4fc651e2010-05-08 07:34:42 +0000113 <groupId>org.apache.maven.plugins</groupId>
114 <artifactId>maven-checkstyle-plugin</artifactId>
115 <configuration>
116 <enableRulesSummary>false</enableRulesSummary>
117 <violationSeverity>warning</violationSeverity>
118 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
119 </configuration>
120 </plugin>
121 </plugins>
122 </build>
Clement Escoffierf2bfd6d2013-05-15 16:17:44 +0000123
124 <scm>
Clement Escoffier124169d2013-05-15 16:18:44 +0000125 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/ipojo/arch-gogo</connection>
126 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/ipojo/arch-gogo</developerConnection>
127 <url>http://svn.apache.org/viewvc/felix/trunk/ipojo/arch-gogo</url>
Clement Escoffierf2bfd6d2013-05-15 16:17:44 +0000128 </scm>
Clement Escoffier4fc651e2010-05-08 07:34:42 +0000129</project>