blob: 5488424572160e0ea2d656405199fc3e095fd31a [file] [log] [blame]
Clement Escoffier639c71a2013-10-02 16:29:35 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Licensed to the Apache Software Foundation (ASF) under one
4 ~ or more contributor license agreements. See the NOTICE file
5 ~ distributed with this work for additional information
6 ~ regarding copyright ownership. The ASF licenses this file
7 ~ to you under the Apache License, Version 2.0 (the
8 ~ "License"); you may not use this file except in compliance
9 ~ with the License. You may obtain a copy of the License at
10 ~
11 ~ http://www.apache.org/licenses/LICENSE-2.0
12 ~
13 ~ Unless required by applicable law or agreed to in writing,
14 ~ software distributed under the License is distributed on an
15 ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 ~ KIND, either express or implied. See the License for the
17 ~ specific language governing permissions and limitations
18 ~ under the License.
19 -->
20
21<project xmlns="http://maven.apache.org/POM/4.0.0"
22 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Clement Escoffier96cf0ae2013-10-04 13:04:38 +000024
25 <parent>
26 <groupId>org.apache.felix</groupId>
27 <artifactId>felix-parent</artifactId>
28 <version>2.1</version>
29 <relativePath>../../../pom/pom.xml</relativePath>
30 </parent>
31
Clement Escoffier639c71a2013-10-02 16:29:35 +000032 <modelVersion>4.0.0</modelVersion>
33
Clement Escoffier639c71a2013-10-02 16:29:35 +000034 <artifactId>org.apache.felix.ipojo.features</artifactId>
35 <version>1.10.2-SNAPSHOT</version>
36
37 <name>Apache Felix iPOJO Karaf Features</name>
38 <description>Apache Karaf Features to provision Apache Felix iPOJO</description>
39
40 <packaging>pom</packaging>
41
42 <properties>
43 <ipojo.webconsole.version>1.7.0</ipojo.webconsole.version>
44 </properties>
45
46 <build>
47 <plugins>
48 <plugin>
49 <artifactId>maven-resources-plugin</artifactId>
50 <version>2.6</version>
51 <executions>
52 <execution>
53 <phase>validate</phase>
54 <goals>
55 <goal>copy-resources</goal>
56 </goals>
57 <configuration>
58 <outputDirectory>${project.build.directory}</outputDirectory>
59 <resources>
60 <resource>
61 <directory>src/main/features</directory>
62 <filtering>true</filtering>
63 </resource>
64 </resources>
65 </configuration>
66 </execution>
67 </executions>
68 </plugin>
69
70 <plugin>
71 <groupId>org.codehaus.mojo</groupId>
72 <artifactId>build-helper-maven-plugin</artifactId>
73 <version>1.8</version>
74 <executions>
75 <execution>
76 <id>attach-artifacts</id>
77 <phase>package</phase>
78 <goals>
79 <goal>attach-artifact</goal>
80 </goals>
81 <configuration>
82 <artifacts>
83 <artifact>
84 <file>${project.build.directory}/features.xml</file>
85 <type>xml</type>
86 </artifact>
87 </artifacts>
88 </configuration>
89 </execution>
90 </executions>
91 </plugin>
92 </plugins>
93 </build>
94</project>