blob: 00fb9f98fef191efc35ffbb8c245ca6c5d538d61 [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">
24 <modelVersion>4.0.0</modelVersion>
25
26 <groupId>org.apache.felix</groupId>
27 <artifactId>org.apache.felix.ipojo.features</artifactId>
28 <version>1.10.2-SNAPSHOT</version>
29
30 <name>Apache Felix iPOJO Karaf Features</name>
31 <description>Apache Karaf Features to provision Apache Felix iPOJO</description>
32
33 <packaging>pom</packaging>
34
35 <properties>
36 <ipojo.webconsole.version>1.7.0</ipojo.webconsole.version>
37 </properties>
38
39 <build>
40 <plugins>
41 <plugin>
42 <artifactId>maven-resources-plugin</artifactId>
43 <version>2.6</version>
44 <executions>
45 <execution>
46 <phase>validate</phase>
47 <goals>
48 <goal>copy-resources</goal>
49 </goals>
50 <configuration>
51 <outputDirectory>${project.build.directory}</outputDirectory>
52 <resources>
53 <resource>
54 <directory>src/main/features</directory>
55 <filtering>true</filtering>
56 </resource>
57 </resources>
58 </configuration>
59 </execution>
60 </executions>
61 </plugin>
62
63 <plugin>
64 <groupId>org.codehaus.mojo</groupId>
65 <artifactId>build-helper-maven-plugin</artifactId>
66 <version>1.8</version>
67 <executions>
68 <execution>
69 <id>attach-artifacts</id>
70 <phase>package</phase>
71 <goals>
72 <goal>attach-artifact</goal>
73 </goals>
74 <configuration>
75 <artifacts>
76 <artifact>
77 <file>${project.build.directory}/features.xml</file>
78 <type>xml</type>
79 </artifact>
80 </artifacts>
81 </configuration>
82 </execution>
83 </executions>
84 </plugin>
85 </plugins>
86 </build>
87</project>