blob: b58be66987037e4ca9a9602852c7823eb3ec147e [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>
Clement Escoffier62f845f2013-04-22 12:36:43 +000038 <module>ipojo-webconsole-quicktart</module>
39 <module>ten-minutes-tutorial</module>
40 <module>maven-tutorial</module>
41 <module>handler-tutorial</module>
Clement Escoffierb7fd6702013-04-21 09:32:28 +000042 </modules>
43
44 <properties>
45 <felix.version>4.2.1</felix.version>
46 </properties>
47
48 <dependencyManagement>
49 <dependencies>
50 <dependency>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>org.apache.felix.ipojo</artifactId>
53 <version>1.8.6</version>
54 </dependency>
55 <dependency>
56 <groupId>org.apache.felix</groupId>
57 <artifactId>org.apache.felix.ipojo.arch.gogo</artifactId>
58 <version>1.0.1</version>
59 </dependency>
60 <dependency>
61 <groupId>org.apache.felix</groupId>
62 <artifactId>org.apache.felix.main.distribution</artifactId>
63 <version>4.2.1</version>
64 <type>zip</type>
65 </dependency>
66 <dependency>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
69 <version>1.8.6</version>
70 </dependency>
71 </dependencies>
72 </dependencyManagement>
73
74 <build>
75 <pluginManagement>
76 <plugins>
77 <plugin>
78 <groupId>org.apache.felix</groupId>
79 <artifactId>maven-bundle-plugin</artifactId>
80 <version>2.3.7</version>
81 </plugin>
82 <plugin>
83 <groupId>org.apache.felix</groupId>
84 <artifactId>maven-ipojo-plugin</artifactId>
85 <version>1.8.6</version>
86 </plugin>
87 <plugin>
88 <artifactId>maven-assembly-plugin</artifactId>
89 <version>2.4</version>
90 </plugin>
91 </plugins>
92 </pluginManagement>
93 </build>
94
95</project>