blob: 3179cf4ef2bc0cddbfa661796b709c65368ae10a [file] [log] [blame]
Clement Escoffier1382a092008-10-14 11:01:46 +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 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 Escoffiere50ede52008-03-28 15:33:36 +000020 <parent>
Clement Escoffiere50ede52008-03-28 15:33:36 +000021 <groupId>org.apache.felix</groupId>
Clement Escoffiera4142112008-03-29 15:04:02 +000022 <artifactId>felix</artifactId>
Clement Escoffiera3a62042009-04-09 12:09:09 +000023 <version>1.0.4</version>
Clement Escoffiera4142112008-03-29 15:04:02 +000024 <relativePath>../../pom/pom.xml</relativePath>
Clement Escoffiere50ede52008-03-28 15:33:36 +000025 </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>
Clement Escoffiera4142112008-03-29 15:04:02 +000030 <groupId>org.apache.felix</groupId>
Clement Escoffier4ff556d2009-01-19 14:34:21 +000031 <version>1.3.0-SNAPSHOT</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000032 <dependencies>
33 <dependency>
Clement Escoffier65fd7342008-04-07 13:29:34 +000034 <groupId>org.apache.felix</groupId>
Clement Escoffiere50ede52008-03-28 15:33:36 +000035 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffiere96f4012009-01-19 14:39:57 +000036 <version>1.3.0-SNAPSHOT</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000037 </dependency>
38 <dependency>
Clement Escoffier65fd7342008-04-07 13:29:34 +000039 <groupId>org.apache.felix</groupId>
Clement Escoffiere50ede52008-03-28 15:33:36 +000040 <artifactId>org.apache.felix.shell</artifactId>
Clement Escoffier818e6922008-10-14 13:55:56 +000041 <version>1.0.2</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000042 </dependency>
43 </dependencies>
44 <build>
45 <plugins>
46 <plugin>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier818e6922008-10-14 13:55:56 +000049 <version>1.4.3</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000050 <extensions>true</extensions>
51 <configuration>
52 <instructions>
Clement Escoffier23e4adf2008-12-10 12:29:41 +000053 <Bundle-Name>Apache Felix iPOJO Arch Command</Bundle-Name>
54 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000055 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
56 <Bundle-Description> iPOJO Arch command for Felix
Clement Escoffier06c1d312008-08-13 14:14:55 +000057 </Bundle-Description>
58 <Bundle-DocURL>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000059 http://felix.apache.org/site/architecture-handler.html
Clement Escoffier06c1d312008-08-13 14:14:55 +000060 </Bundle-DocURL>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000061 <Private-Package> org.apache.felix.ipojo.arch </Private-Package>
62 <Include-Resource> META-INF/LICENCE=LICENSE,
63 META-INF/NOTICE=NOTICE </Include-Resource>
Clement Escoffiere50ede52008-03-28 15:33:36 +000064 </instructions>
65 </configuration>
66 </plugin>
Clement Escoffieraa8bd862008-12-23 13:21:58 +000067 <plugin>
68 <groupId>org.apache.felix</groupId>
69 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffiere96f4012009-01-19 14:39:57 +000070 <version>1.3.0-SNAPSHOT</version>
Clement Escoffieraa8bd862008-12-23 13:21:58 +000071 <executions>
72 <execution>
73 <goals>
74 <goal>ipojo-bundle</goal>
75 </goals>
76 <configuration>
77 <ignoreAnnotations>true</ignoreAnnotations>
78 <metadata>
79 <![CDATA[
80 <ipojo>
Clement Escoffiere1bf9532009-01-19 14:33:55 +000081 <component classname="org.apache.felix.ipojo.arch.ArchCommandImpl" public="false">
Clement Escoffieraa8bd862008-12-23 13:21:58 +000082 <Provides />
83 <requires field="m_archs" optional="true" />
84 <requires field="m_factories" optional="true" />
85 <requires field="m_handlers" optional="true" />
86 </component>
Clement Escoffiere1bf9532009-01-19 14:33:55 +000087 <instance component="org.apache.felix.ipojo.arch.ArchCommandImpl" name="ArchCommand" />
Clement Escoffieraa8bd862008-12-23 13:21:58 +000088 </ipojo>
89 ]]>
90 </metadata>
91 </configuration>
92 </execution>
93 </executions>
94 </plugin>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000095 <plugin>
96 <groupId>org.codehaus.mojo</groupId>
97 <artifactId>rat-maven-plugin</artifactId>
98 <configuration>
99 <excludeSubProjects>false</excludeSubProjects>
100 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
101 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
102 <excludes>
103 <param>doc/**/*</param>
104 <param>maven-eclipse.xml</param>
105 <param>.checkstyle</param>
106 <param>.externalToolBuilders/*</param>
107 <param>LICENSE.asm</param>
108 </excludes>
109 </configuration>
110 </plugin>
111 <plugin>
112 <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>
Clement Escoffiere50ede52008-03-28 15:33:36 +0000120 </plugins>
121 </build>
Clement Escoffier9df72872008-10-14 10:59:57 +0000122</project>