blob: d331399346ca7d976a51b454f22b14d30489338e [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>
Clement Escoffier2f3e0632013-12-08 15:09:23 +000028 <version>1.10.2-SNAPSHOT</version>
Clement Escoffierb7fd6702013-04-21 09:32:28 +000029
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>
Clement Escoffier62f845f2013-04-22 12:36:43 +000037 <module>ipojo-webconsole-quicktart</module>
Clement Escoffier62f845f2013-04-22 12:36:43 +000038 <module>handler-tutorial</module>
Clement Escoffierb7fd6702013-04-21 09:32:28 +000039 </modules>
40
41 <properties>
42 <felix.version>4.2.1</felix.version>
43 </properties>
44
45 <dependencyManagement>
46 <dependencies>
47 <dependency>
48 <groupId>org.apache.felix</groupId>
49 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier4eede512013-06-30 07:29:15 +000050 <version>1.10.1</version>
Clement Escoffierb7fd6702013-04-21 09:32:28 +000051 </dependency>
52 <dependency>
53 <groupId>org.apache.felix</groupId>
Clement Escoffier4eede512013-06-30 07:29:15 +000054 <artifactId>org.apache.felix.ipojo.gogo</artifactId>
55 <version>1.10.1</version>
Clement Escoffierb7fd6702013-04-21 09:32:28 +000056 </dependency>
57 <dependency>
58 <groupId>org.apache.felix</groupId>
59 <artifactId>org.apache.felix.main.distribution</artifactId>
60 <version>4.2.1</version>
61 <type>zip</type>
62 </dependency>
63 <dependency>
64 <groupId>org.apache.felix</groupId>
65 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
Clement Escoffier4eede512013-06-30 07:29:15 +000066 <version>1.10.1</version>
Clement Escoffierb7fd6702013-04-21 09:32:28 +000067 </dependency>
68 </dependencies>
69 </dependencyManagement>
70
71 <build>
72 <pluginManagement>
73 <plugins>
74 <plugin>
75 <groupId>org.apache.felix</groupId>
76 <artifactId>maven-bundle-plugin</artifactId>
77 <version>2.3.7</version>
78 </plugin>
79 <plugin>
80 <groupId>org.apache.felix</groupId>
81 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier2f3e0632013-12-08 15:09:23 +000082 <version>1.10.0</version>
Clement Escoffierb7fd6702013-04-21 09:32:28 +000083 </plugin>
84 <plugin>
85 <artifactId>maven-assembly-plugin</artifactId>
86 <version>2.4</version>
87 </plugin>
88 </plugins>
89 </pluginManagement>
90 </build>
91
92</project>