blob: 51f40f23cf034246db6deef8b3349dc70980caf4 [file] [log] [blame]
Clement Escoffier0ee30742008-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 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 Escoffierce0e1e52008-03-28 15:33:36 +000020 <parent>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000021 <groupId>org.apache.felix</groupId>
Clement Escoffiere2591592009-04-30 14:00:40 +000022 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
Clement Escoffier7d116ff2008-03-29 15:04:02 +000024 <relativePath>../../pom/pom.xml</relativePath>
Clement Escoffierce0e1e52008-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 Escoffier7d116ff2008-03-29 15:04:02 +000030 <groupId>org.apache.felix</groupId>
Clement Escoffier6ab00112009-01-19 14:34:21 +000031 <version>1.3.0-SNAPSHOT</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000032 <dependencies>
33 <dependency>
Clement Escoffier4a12e332008-04-07 13:29:34 +000034 <groupId>org.apache.felix</groupId>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000035 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier705456d2009-01-19 14:39:57 +000036 <version>1.3.0-SNAPSHOT</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000037 </dependency>
38 <dependency>
Clement Escoffier4a12e332008-04-07 13:29:34 +000039 <groupId>org.apache.felix</groupId>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000040 <artifactId>org.apache.felix.shell</artifactId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000041 <version>1.0.2</version>
Clement Escoffierce0e1e52008-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 Escoffier2e9f4b32008-10-14 13:55:56 +000049 <version>1.4.3</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000050 <extensions>true</extensions>
51 <configuration>
52 <instructions>
Clement Escoffier8d888352008-12-10 12:29:41 +000053 <Bundle-Name>Apache Felix iPOJO Arch Command</Bundle-Name>
54 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Clement Escoffier31f25df2008-11-20 15:51:56 +000055 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
56 <Bundle-Description> iPOJO Arch command for Felix
Clement Escoffier2ae452a2008-08-13 14:14:55 +000057 </Bundle-Description>
58 <Bundle-DocURL>
Clement Escoffier31f25df2008-11-20 15:51:56 +000059 http://felix.apache.org/site/architecture-handler.html
Clement Escoffier2ae452a2008-08-13 14:14:55 +000060 </Bundle-DocURL>
Clement Escoffier31f25df2008-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 Escoffierce0e1e52008-03-28 15:33:36 +000064 </instructions>
65 </configuration>
66 </plugin>
Clement Escoffierd9128542008-12-23 13:21:58 +000067 <plugin>
68 <groupId>org.apache.felix</groupId>
69 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier705456d2009-01-19 14:39:57 +000070 <version>1.3.0-SNAPSHOT</version>
Clement Escoffierd9128542008-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 Escoffiera7b87862009-01-19 14:33:55 +000081 <component classname="org.apache.felix.ipojo.arch.ArchCommandImpl" public="false">
Clement Escoffierd9128542008-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 Escoffiera7b87862009-01-19 14:33:55 +000087 <instance component="org.apache.felix.ipojo.arch.ArchCommandImpl" name="ArchCommand" />
Clement Escoffierd9128542008-12-23 13:21:58 +000088 </ipojo>
89 ]]>
90 </metadata>
91 </configuration>
92 </execution>
93 </executions>
94 </plugin>
Clement Escoffier31f25df2008-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 Escoffierce0e1e52008-03-28 15:33:36 +0000120 </plugins>
121 </build>
Clement Escoffier5bb754f2008-10-14 10:59:57 +0000122</project>