blob: 196b68422a74adbd4b80149cca4e5c4eea010353 [file] [log] [blame]
Carsten Ziegelerc19e17c2008-01-03 09:15:17 +00001<!--
Clement Escoffierce0e1e52008-03-28 15:33:36 +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
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.
Carsten Ziegelerc19e17c2008-01-03 09:15:17 +000018-->
Clement Escoffier4a6414c2008-05-18 22:30:54 +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 Escoffier7d116ff2008-03-29 15:04:02 +000022 <artifactId>felix</artifactId>
23 <version>1.0.2</version>
24 <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 Escoffier8d26a672008-05-18 22:31:04 +000031 <version>0.9.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 Escoffier2ca814e2008-05-19 01:47:07 +000036 <version>0.9.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.ipojo.metadata</artifactId>
Clement Escoffier2ca814e2008-05-19 01:47:07 +000041 <version>0.9.0-SNAPSHOT</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000042 </dependency>
43 <dependency>
Clement Escoffier4a12e332008-04-07 13:29:34 +000044 <groupId>org.apache.felix</groupId>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000045 <artifactId>org.apache.felix.shell</artifactId>
46 <version>1.0.0</version>
47 </dependency>
48 </dependencies>
49 <build>
50 <plugins>
51 <plugin>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier9fc9a3c2008-08-11 09:55:34 +000054 <version>1.4.2</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000055 <extensions>true</extensions>
56 <configuration>
57 <instructions>
58 <Bundle-Name>
59 iPOJO Arch Felix Command
60 </Bundle-Name>
61 <Bundle-SymbolicName>
62 ${pom.artifactId}
63 </Bundle-SymbolicName>
Clement Escoffier9d7a0052008-05-05 18:30:18 +000064 <Bundle-Vendor>
65 The Apache Software Foundation
66 </Bundle-Vendor>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000067 <Private-Package>
68 org.apache.felix.ipojo.arch
69 </Private-Package>
Clement Escoffier9d7a0052008-05-05 18:30:18 +000070 <Include-Resource>
71 META-INF/LICENCE=LICENSE,
72 META-INF/NOTICE=NOTICE
73 </Include-Resource>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000074 </instructions>
75 </configuration>
76 </plugin>
77 <plugin>
78 <groupId>org.apache.felix</groupId>
79 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier2ca814e2008-05-19 01:47:07 +000080 <version>0.9.0-SNAPSHOT</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000081 <executions>
82 <execution>
83 <goals>
84 <goal>ipojo-bundle</goal>
85 </goals>
86 <configuration>
87 <ignoreAnnotations>true</ignoreAnnotations>
88 </configuration>
89 </execution>
90 </executions>
91 </plugin>
92 </plugins>
93 </build>
Richard S. Hall7fa14152006-06-14 15:22:03 +000094</project>