blob: f6506e3ef09dcbf9d4fb0ef9660cd8e611ee7f5c [file] [log] [blame]
Carsten Ziegelerc19e17c2008-01-03 09:15:17 +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-->
Richard S. Hall7fa14152006-06-14 15:22:03 +000019<project>
20 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
Carsten Ziegelerb7251fa2008-01-16 07:37:24 +000023 <version>1.0.2</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000024 <relativePath>../../pom/pom.xml</relativePath>
Richard S. Hall7fa14152006-06-14 15:22:03 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
Clement Escoffierace86c52007-06-24 17:44:53 +000027 <packaging>bundle</packaging>
Richard S. Hall7fa14152006-06-14 15:22:03 +000028 <name>Apache Felix iPOJO Arch Command</name>
Clement Escoffier6c6ae8d2007-09-25 13:27:49 +000029 <version>0.7.5-SNAPSHOT</version>
Richard S. Hall7fa14152006-06-14 15:22:03 +000030 <artifactId>org.apache.felix.ipojo.arch</artifactId>
31 <dependencies>
32 <dependency>
33 <groupId>${pom.groupId}</groupId>
34 <artifactId>org.apache.felix.ipojo</artifactId>
35 <version>${pom.version}</version>
Richard S. Hall7fa14152006-06-14 15:22:03 +000036 </dependency>
37 <dependency>
38 <groupId>${pom.groupId}</groupId>
Richard S. Hall8c011c62007-04-17 14:31:35 +000039 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
40 <version>${pom.version}</version>
Richard S. Hall8c011c62007-04-17 14:31:35 +000041 </dependency>
42 <dependency>
43 <groupId>${pom.groupId}</groupId>
Richard S. Hall7fa14152006-06-14 15:22:03 +000044 <artifactId>org.apache.felix.shell</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000045 <version>1.1.0-SNAPSHOT</version>
Richard S. Hall7fa14152006-06-14 15:22:03 +000046 </dependency>
47 </dependencies>
48 <build>
Clement Escoffierace86c52007-06-24 17:44:53 +000049 <plugins>
Richard S. Hall7fa14152006-06-14 15:22:03 +000050 <plugin>
Clement Escoffierace86c52007-06-24 17:44:53 +000051 <groupId>org.apache.felix</groupId>
52 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCullochcb8192f2008-02-18 07:37:05 +000053 <version>1.2.1</version>
Richard S. Hall7fa14152006-06-14 15:22:03 +000054 <extensions>true</extensions>
55 <configuration>
Clement Escoffierace86c52007-06-24 17:44:53 +000056 <instructions>
Clement Escoffiera2372882007-10-30 10:38:44 +000057 <Bundle-Name>iPOJO Arch Command</Bundle-Name>
Clement Escoffierace86c52007-06-24 17:44:53 +000058 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
59 <Private-Package>org.apache.felix.ipojo.arch</Private-Package>
60 </instructions>
Richard S. Hall7fa14152006-06-14 15:22:03 +000061 </configuration>
62 </plugin>
Clement Escoffierace86c52007-06-24 17:44:53 +000063 <plugin>
64 <groupId>org.apache.felix</groupId>
Clement Escoffierbf5f1fd2007-09-26 09:00:53 +000065 <artifactId>maven-ipojo-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000066 <version>${pom.version}</version>
Clement Escoffierace86c52007-06-24 17:44:53 +000067 <executions>
68 <execution>
69 <goals>
70 <goal>ipojo-bundle</goal>
71 </goals>
72 <configuration>
Clement Escoffier97f48142007-10-19 10:41:11 +000073 <ignoreAnnotations>true</ignoreAnnotations>
Clement Escoffierace86c52007-06-24 17:44:53 +000074 </configuration>
75 </execution>
76 </executions>
77 </plugin>
Richard S. Hall7fa14152006-06-14 15:22:03 +000078 </plugins>
Clement Escoffierace86c52007-06-24 17:44:53 +000079 </build>
Richard S. Hall7fa14152006-06-14 15:22:03 +000080</project>