blob: 49eef098289e60132616e7b443f7c9cd30cf987c [file] [log] [blame]
Clement Escoffier0ee30742008-10-14 11:01:46 +00001<!--
Clement Escoffierbfa74d02009-07-19 16:25:18 +00002 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
Clement Escoffier0b93f382009-07-03 13:16:24 +00009
Clement Escoffierbfa74d02009-07-19 16:25:18 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier0b93f382009-07-03 13:16:24 +000011
Clement Escoffierbfa74d02009-07-19 16:25:18 +000012 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.
Clement Escoffier0ee30742008-10-14 11:01:46 +000018-->
Clement Escoffierc5b8d122013-03-04 09:01:52 +000019<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>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000022 <groupId>org.apache.felix</groupId>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000023 <artifactId>felix-parent</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000024 <version>2.1</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000025 <relativePath>../../pom/pom.xml</relativePath>
26 </parent>
27 <modelVersion>4.0.0</modelVersion>
28 <packaging>bundle</packaging>
29 <name>Apache Felix iPOJO Arch Command</name>
30 <artifactId>org.apache.felix.ipojo.arch</artifactId>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000031 <version>1.7.0-SNAPSHOT</version>
32
33 <description>Arch command to collect and print information about iPOJO instances.</description>
Clement Escoffierb76fae72013-05-28 04:37:54 +000034 <url>
35 http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ipojo-arch-command.html
36 </url>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000037
38 <dependencies>
39 <dependency>
40 <groupId>org.apache.felix</groupId>
41 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000042 <version>1.9.0-SNAPSHOT</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000043 </dependency>
44 <dependency>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>org.apache.felix.shell</artifactId>
47 <version>1.0.2</version>
48 </dependency>
49 </dependencies>
50 <build>
51 <plugins>
52 <plugin>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000055 <version>2.3.7</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000056 <extensions>true</extensions>
57 <configuration>
58 <instructions>
59 <Bundle-Name>Apache Felix iPOJO Arch Command</Bundle-Name>
60 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
61 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
62 <Bundle-Description>iPOJO Arch command for Felix
63 </Bundle-Description>
64 <Bundle-DocURL>
Clement Escoffierb76fae72013-05-28 04:37:54 +000065 http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ipojo-arch-command.html
Clement Escoffierc5b8d122013-03-04 09:01:52 +000066 </Bundle-DocURL>
67 <Private-Package>org.apache.felix.ipojo.arch</Private-Package>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000068 </instructions>
69 </configuration>
70 </plugin>
71 <plugin>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>maven-ipojo-plugin</artifactId>
74 <version>1.8.0</version>
75 <executions>
76 <execution>
77 <goals>
78 <goal>ipojo-bundle</goal>
79 </goals>
80 <configuration>
81 <ignoreAnnotations>true</ignoreAnnotations>
82 <metadata>
83 <![CDATA[
Clement Escoffierbfa74d02009-07-19 16:25:18 +000084 <ipojo>
85 <component classname="org.apache.felix.ipojo.arch.ArchCommandImpl" public="false">
86 <Provides />
Clement Escoffiere240bf22010-04-16 14:52:49 +000087 <requires field="m_archs" optional="true" proxy="false" />
88 <requires field="m_factories" optional="true" proxy="false" />
89 <requires field="m_handlers" optional="true" proxy="false" />
Clement Escoffierbfa74d02009-07-19 16:25:18 +000090 </component>
91 <instance component="org.apache.felix.ipojo.arch.ArchCommandImpl" name="ArchCommand" />
92 </ipojo>
93 ]]>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000094 </metadata>
95 </configuration>
96 </execution>
97 </executions>
98 </plugin>
99 <plugin>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000100 <groupId>org.apache.maven.plugins</groupId>
101 <artifactId>maven-checkstyle-plugin</artifactId>
102 <configuration>
103 <enableRulesSummary>false</enableRulesSummary>
104 <violationSeverity>warning</violationSeverity>
105 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
106 </configuration>
107 </plugin>
108 <plugin>
109 <groupId>org.apache.maven.plugins</groupId>
110 <artifactId>maven-compiler-plugin</artifactId>
111 <configuration>
112 <target>1.5</target>
113 <source>1.5</source>
114 </configuration>
115 </plugin>
116 </plugins>
117 </build>
Clement Escoffierbfa74d02009-07-19 16:25:18 +0000118</project>