blob: 1d0a4946bdc6b352fa498d79a4cfdce7cd58ca8f [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 <groupId>org.apache.felix</groupId>
27 <artifactId>org.apache.felix.ipojo.distributions</artifactId>
28 <version>1.9.0-SNAPSHOT</version>
29
30 <packaging>pom</packaging>
31
32 <description>
33 This project build distributions for the web site, it does not intend to be released, just built.
34 </description>
35
36 <modules>
37 <module>ipojo-felix-quicktart</module>
38 </modules>
39
40 <properties>
41 <felix.version>4.2.1</felix.version>
42 </properties>
43
44 <dependencyManagement>
45 <dependencies>
46 <dependency>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>org.apache.felix.ipojo</artifactId>
49 <version>1.8.6</version>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>org.apache.felix.ipojo.arch.gogo</artifactId>
54 <version>1.0.1</version>
55 </dependency>
56 <dependency>
57 <groupId>org.apache.felix</groupId>
58 <artifactId>org.apache.felix.main.distribution</artifactId>
59 <version>4.2.1</version>
60 <type>zip</type>
61 </dependency>
62 <dependency>
63 <groupId>org.apache.felix</groupId>
64 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
65 <version>1.8.6</version>
66 </dependency>
67 </dependencies>
68 </dependencyManagement>
69
70 <build>
71 <pluginManagement>
72 <plugins>
73 <plugin>
74 <groupId>org.apache.felix</groupId>
75 <artifactId>maven-bundle-plugin</artifactId>
76 <version>2.3.7</version>
77 </plugin>
78 <plugin>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>maven-ipojo-plugin</artifactId>
81 <version>1.8.6</version>
82 </plugin>
83 <plugin>
84 <artifactId>maven-assembly-plugin</artifactId>
85 <version>2.4</version>
86 </plugin>
87 </plugins>
88 </pluginManagement>
89 </build>
90
91</project>