blob: b43ad73a02bfe6d3447074aa5868a24d788c7fd6 [file] [log] [blame]
Clement Escoffierb7fd6702013-04-21 09:32:28 +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 <parent>
27 <groupId>org.apache.felix</groupId>
28 <artifactId>org.apache.felix.ipojo.distributions</artifactId>
Clement Escoffierc57fd3b2013-12-08 15:11:46 +000029 <version>1.10.2-SNAPSHOT</version>
Clement Escoffierb7fd6702013-04-21 09:32:28 +000030 </parent>
31
32 <artifactId>ipojo-felix-quicktart</artifactId>
Clement Escoffierb7fd6702013-04-21 09:32:28 +000033
34 <packaging>pom</packaging>
35
36 <description>
37 Build a distribution of Felix including iPOJO core and gogo commands
38 </description>
39
40 <dependencies>
41 <dependency>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>org.apache.felix.main.distribution</artifactId>
44 <type>zip</type>
45 </dependency>
46 <dependency>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>org.apache.felix.ipojo</artifactId>
49 </dependency>
50 <dependency>
51 <groupId>org.apache.felix</groupId>
Clement Escoffier4eede512013-06-30 07:29:15 +000052 <artifactId>org.apache.felix.ipojo.gogo</artifactId>
Clement Escoffierb7fd6702013-04-21 09:32:28 +000053 </dependency>
54 </dependencies>
55
56 <build>
57 <plugins>
58 <plugin>
59 <artifactId>maven-assembly-plugin</artifactId>
60 <configuration>
61 <descriptors>
62 <descriptor>src/main/assembly/distribution.xml</descriptor>
63 </descriptors>
64 <attach>true</attach>
65 </configuration>
66 <executions>
67 <execution>
68 <goals>
69 <goal>single</goal>
70 </goals>
71 <phase>package</phase>
72 </execution>
73 </executions>
74 </plugin>
75 </plugins>
76 </build>
77</project>