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 | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 30 | <groupId>org.apache.felix.gogo</groupId> |
| 31 | <artifactId>gogo</artifactId> |
Guillaume Nodet | c35dd9e | 2009-06-22 22:27:13 +0000 | [diff] [blame] | 32 | <version>1.0.0-SNAPSHOT</version> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 33 | |
| 34 | <modules> |
Richard S. Hall | 4f7b2df | 2009-07-01 12:49:09 +0000 | [diff] [blame] | 35 | <module>gogo.runtime</module> |
| 36 | <module>gogo.launcher</module> |
| 37 | <module>gogo.console</module> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 38 | </modules> |
| 39 | |
| 40 | <dependencyManagement> |
| 41 | <dependencies> |
| 42 | <dependency> |
| 43 | <groupId>org.apache.felix</groupId> |
| 44 | <artifactId>org.osgi.core</artifactId> |
| 45 | <version>1.2.0</version> |
| 46 | <scope>provided</scope> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.apache.felix</groupId> |
| 50 | <artifactId>org.osgi.compendium</artifactId> |
| 51 | <version>1.2.0</version> |
| 52 | <scope>provided</scope> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>junit</groupId> |
| 56 | <artifactId>junit</artifactId> |
| 57 | <version>4.5</version> |
| 58 | <scope>test</scope> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.apache.felix.gogo</groupId> |
| 62 | <artifactId>org.apache.felix.gogo.runtime</artifactId> |
| 63 | <version>${pom.version}</version> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.apache.felix.gogo</groupId> |
| 67 | <artifactId>org.apache.felix.gogo.console</artifactId> |
| 68 | <version>${pom.version}</version> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.apache.felix.gogo</groupId> |
| 72 | <artifactId>org.apache.felix.gogo.launcher</artifactId> |
| 73 | <version>${pom.version}</version> |
| 74 | </dependency> |
| 75 | </dependencies> |
| 76 | </dependencyManagement> |
| 77 | |
Guillaume Nodet | c35dd9e | 2009-06-22 22:27:13 +0000 | [diff] [blame] | 78 | <build> |
| 79 | <plugins> |
| 80 | <plugin> |
Guillaume Nodet | c35dd9e | 2009-06-22 22:27:13 +0000 | [diff] [blame] | 81 | <artifactId>maven-compiler-plugin</artifactId> |
| 82 | <configuration> |
| 83 | <source>1.5</source> |
| 84 | <target>1.5</target> |
| 85 | </configuration> |
| 86 | </plugin> |
| 87 | </plugins> |
| 88 | </build> |
Guillaume Nodet | 04a5637 | 2009-06-22 22:07:09 +0000 | [diff] [blame] | 89 | </project> |