Guillaume Nodet | 04a5637 | 2009-06-22 22:07:09 +0000 | [diff] [blame] | 1 | <!-- |
| 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 Nodet | c35dd9e | 2009-06-22 22:27:13 +0000 | [diff] [blame] | 19 | <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 Nodet | 04a5637 | 2009-06-22 22:07:09 +0000 | [diff] [blame] | 22 | <groupId>org.apache.felix</groupId> |
Guillaume Nodet | c35dd9e | 2009-06-22 22:27:13 +0000 | [diff] [blame] | 23 | <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 Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 28 | <packaging>pom</packaging> |
Guillaume Nodet | c35dd9e | 2009-06-22 22:27:13 +0000 | [diff] [blame] | 29 | <name>Apache Felix Gogo Shell</name> |
Guillaume Nodet | 6df57bf | 2009-07-03 16:07:10 +0000 | [diff] [blame] | 30 | <description>Apache Felix Gogo Shell</description> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 31 | <groupId>org.apache.felix.gogo</groupId> |
| 32 | <artifactId>gogo</artifactId> |
Richard S. Hall | d8c88e0 | 2009-07-03 21:29:18 +0000 | [diff] [blame] | 33 | <version>0.9.0-SNAPSHOT</version> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 34 | |
| 35 | <modules> |
Richard S. Hall | c1d2d3f | 2009-07-03 21:05:34 +0000 | [diff] [blame] | 36 | <module>runtime</module> |
| 37 | <module>launcher</module> |
| 38 | <module>console</module> |
| 39 | <module>commands</module> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 40 | </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 Nodet | c35dd9e | 2009-06-22 22:27:13 +0000 | [diff] [blame] | 80 | <build> |
| 81 | <plugins> |
| 82 | <plugin> |
Guillaume Nodet | c35dd9e | 2009-06-22 22:27:13 +0000 | [diff] [blame] | 83 | <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 Nodet | 04a5637 | 2009-06-22 22:07:09 +0000 | [diff] [blame] | 91 | </project> |