blob: 0caef14af5a3e91e0d171d701ebd14a5fea8fa8f [file] [log] [blame]
Clement Escoffier1382a092008-10-14 11:01:46 +00001<!--
Clement Escoffier0630c6b2009-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 Escoffierc80b73d2009-07-03 13:16:24 +00009
Clement Escoffier0630c6b2009-07-19 16:25:18 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffierc80b73d2009-07-03 13:16:24 +000011
Clement Escoffier0630c6b2009-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 Escoffier1382a092008-10-14 11:01:46 +000018-->
Clement Escoffiere1bf9532009-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 Escoffier0630c6b2009-07-19 16:25:18 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Clement Escoffier5ab0b442010-04-16 13:54:16 +000023 <version>1.2.1</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000024 <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>
Clement Escoffiera6fc2fc2010-04-16 14:54:04 +000031 <version>1.7.0-SNAPSHOT</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000032
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>
Clement Escoffierfe606902010-05-01 10:46:02 +000040 <version>${project.version}</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000041 </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>
Clement Escoffierfe606902010-05-01 10:46:02 +000058 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000059 <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>
Clement Escoffierdd7c1152010-07-14 18:31:13 +000066 <Include-Resource>
67 META-INF/LICENSE=LICENSE,
68 META-INF/NOTICE=NOTICE,
69 META-INF/DEPENDENCIES=DEPENDENCIES
70 </Include-Resource>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000071 </instructions>
72 </configuration>
73 </plugin>
74 <plugin>
75 <groupId>org.apache.felix</groupId>
76 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierfe606902010-05-01 10:46:02 +000077 <version>${project.version}</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000078 <executions>
79 <execution>
80 <goals>
81 <goal>ipojo-bundle</goal>
82 </goals>
83 <configuration>
84 <ignoreAnnotations>true</ignoreAnnotations>
85 <metadata>
86 <![CDATA[
87 <ipojo>
88 <component classname="org.apache.felix.ipojo.arch.ArchCommandImpl" public="false">
89 <Provides />
Clement Escoffierdc58d5b2010-04-16 14:52:49 +000090 <requires field="m_archs" optional="true" proxy="false" />
91 <requires field="m_factories" optional="true" proxy="false" />
92 <requires field="m_handlers" optional="true" proxy="false" />
Clement Escoffier0630c6b2009-07-19 16:25:18 +000093 </component>
94 <instance component="org.apache.felix.ipojo.arch.ArchCommandImpl" name="ArchCommand" />
95 </ipojo>
96 ]]>
97 </metadata>
98 </configuration>
99 </execution>
100 </executions>
101 </plugin>
102 <plugin>
103 <groupId>org.codehaus.mojo</groupId>
104 <artifactId>rat-maven-plugin</artifactId>
105 <configuration>
106 <excludeSubProjects>false</excludeSubProjects>
107 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
108 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
109 <excludes>
110 <param>doc/**/*</param>
111 <param>maven-eclipse.xml</param>
112 <param>.checkstyle</param>
113 <param>.externalToolBuilders/*</param>
114 <param>LICENSE.asm</param>
115 </excludes>
116 </configuration>
117 </plugin>
118 <plugin>
119 <groupId>org.apache.maven.plugins</groupId>
120 <artifactId>maven-checkstyle-plugin</artifactId>
121 <configuration>
122 <enableRulesSummary>false</enableRulesSummary>
123 <violationSeverity>warning</violationSeverity>
124 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
125 </configuration>
126 </plugin>
127 </plugins>
128 </build>
129</project>