Karl Pauls | 14f14db | 2010-06-06 20:39:11 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 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 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 21 | <parent> |
| 22 | <groupId>org.apache.felix</groupId> |
| 23 | <artifactId>felix-parent</artifactId> |
A. J. David Bosschaert | 47fe697 | 2014-06-17 09:23:24 +0000 | [diff] [blame] | 24 | <version>2.1</version> |
A. J. David Bosschaert | 8558306 | 2014-06-17 10:03:55 +0000 | [diff] [blame] | 25 | <relativePath>../../pom/pom.xml</relativePath> |
Karl Pauls | 14f14db | 2010-06-06 20:39:11 +0000 | [diff] [blame] | 26 | </parent> |
| 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <packaging>pom</packaging> |
| 29 | <name>Apache Felix Gogo</name> |
| 30 | <description>Apache Felix Gogo Subproject</description> |
| 31 | <artifactId>gogo-parent</artifactId> |
A. J. David Bosschaert | 37f4ebc | 2014-06-17 10:11:08 +0000 | [diff] [blame] | 32 | <version>0.7.0-SNAPSHOT</version> |
Karl Pauls | 14f14db | 2010-06-06 20:39:11 +0000 | [diff] [blame] | 33 | |
| 34 | <dependencyManagement> |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>junit</groupId> |
| 38 | <artifactId>junit</artifactId> |
| 39 | <version>4.5</version> |
| 40 | <scope>test</scope> |
| 41 | </dependency> |
| 42 | </dependencies> |
| 43 | </dependencyManagement> |
| 44 | |
| 45 | <build> |
| 46 | <pluginManagement> |
| 47 | <plugins> |
| 48 | <plugin> |
| 49 | <groupId>org.apache.maven.plugins</groupId> |
| 50 | <artifactId>maven-release-plugin</artifactId> |
| 51 | <configuration> |
| 52 | <autoVersionSubmodules>true</autoVersionSubmodules> |
| 53 | <preparationGoals>clean verify install</preparationGoals> |
| 54 | </configuration> |
| 55 | </plugin> |
| 56 | <plugin> |
| 57 | <groupId>org.apache.felix</groupId> |
| 58 | <artifactId>maven-bundle-plugin</artifactId> |
| 59 | <version>1.4.3</version> |
| 60 | <extensions>true</extensions> |
| 61 | </plugin> |
| 62 | </plugins> |
| 63 | </pluginManagement> |
| 64 | <plugins> |
| 65 | <plugin> |
| 66 | <artifactId>maven-compiler-plugin</artifactId> |
| 67 | <configuration> |
| 68 | <source>1.5</source> |
| 69 | <target>1.5</target> |
| 70 | </configuration> |
| 71 | </plugin> |
| 72 | </plugins> |
| 73 | </build> |
Karl Pauls | 14f14db | 2010-06-06 20:39:11 +0000 | [diff] [blame] | 74 | </project> |