blob: 3905bc1546ff022c8877ce173dec05381ee54a01 [file] [log] [blame]
Guillaume Nodet04a56372009-06-22 22:07:09 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
Guillaume Nodetc35dd9e2009-06-22 22:27:13 +000019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21 <parent>
Guillaume Nodet04a56372009-06-22 22:07:09 +000022 <groupId>org.apache.felix</groupId>
Guillaume Nodetc35dd9e2009-06-22 22:27:13 +000023 <artifactId>felix-parent</artifactId>
24 <version>1.2.0</version>
25 <relativePath>../pom/pom.xml</relativePath>
26 </parent>
27 <modelVersion>4.0.0</modelVersion>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000028 <packaging>pom</packaging>
Guillaume Nodetc35dd9e2009-06-22 22:27:13 +000029 <name>Apache Felix Gogo Shell</name>
Guillaume Nodet6df57bf2009-07-03 16:07:10 +000030 <description>Apache Felix Gogo Shell</description>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000031 <groupId>org.apache.felix.gogo</groupId>
32 <artifactId>gogo</artifactId>
Richard S. Halld8c88e02009-07-03 21:29:18 +000033 <version>0.9.0-SNAPSHOT</version>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000034
35 <modules>
Richard S. Hallc1d2d3f2009-07-03 21:05:34 +000036 <module>runtime</module>
37 <module>launcher</module>
38 <module>console</module>
39 <module>commands</module>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000040 </modules>
41
42 <dependencyManagement>
43 <dependencies>
44 <dependency>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>org.osgi.core</artifactId>
47 <version>1.2.0</version>
48 <scope>provided</scope>
49 </dependency>
50 <dependency>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>org.osgi.compendium</artifactId>
53 <version>1.2.0</version>
54 <scope>provided</scope>
55 </dependency>
56 <dependency>
57 <groupId>junit</groupId>
58 <artifactId>junit</artifactId>
59 <version>4.5</version>
60 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <groupId>org.apache.felix.gogo</groupId>
64 <artifactId>org.apache.felix.gogo.runtime</artifactId>
65 <version>${pom.version}</version>
66 </dependency>
67 <dependency>
68 <groupId>org.apache.felix.gogo</groupId>
69 <artifactId>org.apache.felix.gogo.console</artifactId>
70 <version>${pom.version}</version>
71 </dependency>
72 <dependency>
73 <groupId>org.apache.felix.gogo</groupId>
74 <artifactId>org.apache.felix.gogo.launcher</artifactId>
75 <version>${pom.version}</version>
76 </dependency>
77 </dependencies>
78 </dependencyManagement>
79
Guillaume Nodetc35dd9e2009-06-22 22:27:13 +000080 <build>
81 <plugins>
82 <plugin>
Guillaume Nodetc35dd9e2009-06-22 22:27:13 +000083 <artifactId>maven-compiler-plugin</artifactId>
84 <configuration>
85 <source>1.5</source>
86 <target>1.5</target>
87 </configuration>
88 </plugin>
89 </plugins>
90 </build>
Guillaume Nodet04a56372009-06-22 22:07:09 +000091</project>