blob: 9884587ed54e592d9e607c3987c635692d5d36a9 [file] [log] [blame]
Clement Escoffier04a11662013-07-21 17:24:32 +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>ipojo-maven-tutorial</artifactId>
28 <version>@project.version@</version>
29
30 <packaging>pom</packaging>
31
32 <description>
33 The iPOJO Maven tutorial
34 </description>
35
36 <dependencies>
37 <dependency>
38 <groupId>org.apache.felix</groupId>
39 <artifactId>org.apache.felix.ipojo.distribution.quickstart</artifactId>
40 <version>${project.version}</version>
41 <type>zip</type>
42 </dependency>
43 <dependency>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>org.apache.felix.ipojo</artifactId>
46 <version>${project.version}</version>
47 </dependency>
48 <dependency>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>org.apache.felix.ipojo.gogo</artifactId>
51 <version>${project.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>org.apache.felix</groupId>
55 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
56 <version>${project.version}</version>
57 </dependency>
58 </dependencies>
59
60 <modules>
61 <module>hello.service</module>
62
63 <!-- XML -->
64 <module>xml/hello.impl.xml</module>
65 <module>xml/hello.client.xml</module>
66 <module>xml/hello.felix.xml</module>
67
68 <!-- Annotation -->
69 <module>annotations/hello.impl.annotations</module>
70 <module>annotations/hello.client.annotations</module>
71 <module>annotations/hello.felix.annotations</module>
72 </modules>
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>${project.version}</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</project>