blob: fc7407a161aab473da3a4b8984ac693786eb1eb4 [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 Escoffiera7b87862009-01-19 14:33:55 +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 Escoffierbfa74d02009-07-19 16:25:18 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
24 <relativePath>../../pom/pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Apache Felix iPOJO Arch Command</name>
29 <artifactId>org.apache.felix.ipojo.arch</artifactId>
30 <groupId>org.apache.felix</groupId>
31 <version>1.3.0-SNAPSHOT</version>
32
33 <description>Arch command to collect and print information about iPOJO instances.</description>
34 <url>http://felix.apache.org/site/ipojo-arch-command.html</url>
35
36 <dependencies>
37 <dependency>
38 <groupId>org.apache.felix</groupId>
39 <artifactId>org.apache.felix.ipojo</artifactId>
40 <version>${pom.version}</version>
41 </dependency>
42 <dependency>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>org.apache.felix.shell</artifactId>
45 <version>1.0.2</version>
46 </dependency>
47 </dependencies>
48 <build>
49 <plugins>
50 <plugin>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>maven-bundle-plugin</artifactId>
53 <version>1.4.3</version>
54 <extensions>true</extensions>
55 <configuration>
56 <instructions>
57 <Bundle-Name>Apache Felix iPOJO Arch Command</Bundle-Name>
58 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
59 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
60 <Bundle-Description> iPOJO Arch command for Felix
61 </Bundle-Description>
62 <Bundle-DocURL>
63 http://felix.apache.org/site/ipojo-arch-command.html
64 </Bundle-DocURL>
65 <Private-Package> org.apache.felix.ipojo.arch </Private-Package>
66 <Include-Resource> META-INF/LICENSE=LICENSE,
67 META-INF/NOTICE=NOTICE </Include-Resource>
68 </instructions>
69 </configuration>
70 </plugin>
71 <plugin>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>maven-ipojo-plugin</artifactId>
74 <version>${pom.version}</version>
75 <executions>
76 <execution>
77 <goals>
78 <goal>ipojo-bundle</goal>
79 </goals>
80 <configuration>
81 <ignoreAnnotations>true</ignoreAnnotations>
82 <metadata>
83 <![CDATA[
84 <ipojo>
85 <component classname="org.apache.felix.ipojo.arch.ArchCommandImpl" public="false">
86 <Provides />
87 <requires field="m_archs" optional="true" />
88 <requires field="m_factories" optional="true" />
89 <requires field="m_handlers" optional="true" />
90 </component>
91 <instance component="org.apache.felix.ipojo.arch.ArchCommandImpl" name="ArchCommand" />
92 </ipojo>
93 ]]>
94 </metadata>
95 </configuration>
96 </execution>
97 </executions>
98 </plugin>
99 <plugin>
100 <groupId>org.codehaus.mojo</groupId>
101 <artifactId>rat-maven-plugin</artifactId>
102 <configuration>
103 <excludeSubProjects>false</excludeSubProjects>
104 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
105 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
106 <excludes>
107 <param>doc/**/*</param>
108 <param>maven-eclipse.xml</param>
109 <param>.checkstyle</param>
110 <param>.externalToolBuilders/*</param>
111 <param>LICENSE.asm</param>
112 </excludes>
113 </configuration>
114 </plugin>
115 <plugin>
116 <groupId>org.apache.maven.plugins</groupId>
117 <artifactId>maven-checkstyle-plugin</artifactId>
118 <configuration>
119 <enableRulesSummary>false</enableRulesSummary>
120 <violationSeverity>warning</violationSeverity>
121 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
122 </configuration>
123 </plugin>
124 </plugins>
125 </build>
126</project>