Arjun Panday | 0e4eacc | 2012-01-20 08:21:21 +0000 | [diff] [blame] | 1 | <?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 | <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/xsd/maven-4.0.0.xsd"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <groupId>org.apache.felix</groupId> |
| 24 | <artifactId>felix-parent</artifactId> |
| 25 | <version>2.1</version> |
| 26 | <relativePath>../../../pom/pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <groupId>org.apache.felix</groupId> |
| 30 | <artifactId>servicediagnostics.parent</artifactId> |
Arjun Panday | fd49b37 | 2013-01-03 14:54:42 +0000 | [diff] [blame] | 31 | <version>0.1.3-SNAPSHOT</version> |
Arjun Panday | 0e4eacc | 2012-01-20 08:21:21 +0000 | [diff] [blame] | 32 | <packaging>pom</packaging> |
| 33 | |
| 34 | <name>Service Diagnostics - Parent</name> |
| 35 | |
| 36 | <scm> |
Arjun Panday | fd49b37 | 2013-01-03 14:54:42 +0000 | [diff] [blame] | 37 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/servicediagnostics/parent</connection> |
| 38 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/servicediagnostics/parent</developerConnection> |
| 39 | <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/servicediagnostics/parent</url> |
Arjun Panday | 0e4eacc | 2012-01-20 08:21:21 +0000 | [diff] [blame] | 40 | </scm> |
| 41 | |
| 42 | <repositories> |
| 43 | <repository> |
| 44 | <id>scala-tools.org</id> |
| 45 | <name>Scala-tools Maven2 Repository</name> |
| 46 | <url>http://scala-tools.org/repo-releases</url> |
| 47 | </repository> |
| 48 | </repositories> |
| 49 | |
| 50 | <pluginRepositories> |
| 51 | <pluginRepository> |
| 52 | <id>scala-tools.org</id> |
| 53 | <name>Scala-tools Maven2 Repository</name> |
| 54 | <url>http://scala-tools.org/repo-releases</url> |
| 55 | </pluginRepository> |
| 56 | </pluginRepositories> |
| 57 | |
| 58 | <dependencies> |
| 59 | <dependency> |
| 60 | <groupId>org.osgi</groupId> |
| 61 | <artifactId>org.osgi.core</artifactId> |
| 62 | <version>4.2.0</version> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.osgi</groupId> |
| 66 | <artifactId>org.osgi.compendium</artifactId> |
| 67 | <version>4.2.0</version> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.apache.felix</groupId> |
| 71 | <artifactId>org.apache.felix.scr</artifactId> |
| 72 | <version>1.6.0</version> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.apache.felix</groupId> |
| 76 | <artifactId>org.apache.felix.dependencymanager</artifactId> |
| 77 | <version>3.0.0</version> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>biz.aQute</groupId> |
| 81 | <artifactId>bndlib</artifactId> |
| 82 | <version>1.43.0</version> |
| 83 | </dependency> |
| 84 | </dependencies> |
| 85 | |
| 86 | <build> |
| 87 | <sourceDirectory>src/main/scala</sourceDirectory> |
| 88 | <testSourceDirectory>src/test/scala</testSourceDirectory> |
| 89 | |
| 90 | <plugins> |
| 91 | <plugin> |
Arjun Panday | ee870f5 | 2013-02-13 13:27:08 +0000 | [diff] [blame] | 92 | <groupId>net.alchim31.maven</groupId> |
| 93 | <artifactId>scala-maven-plugin</artifactId> |
| 94 | <version>3.1.2</version> |
Arjun Panday | 0e4eacc | 2012-01-20 08:21:21 +0000 | [diff] [blame] | 95 | <executions> |
| 96 | <execution> |
| 97 | <goals> |
| 98 | <goal>compile</goal> |
| 99 | </goals> |
| 100 | </execution> |
| 101 | </executions> |
| 102 | <configuration> |
Arjun Panday | ee870f5 | 2013-02-13 13:27:08 +0000 | [diff] [blame] | 103 | <scalaVersion>2.10.0</scalaVersion> |
Arjun Panday | 0e4eacc | 2012-01-20 08:21:21 +0000 | [diff] [blame] | 104 | </configuration> |
| 105 | </plugin> |
| 106 | |
| 107 | <plugin> |
| 108 | <groupId>org.apache.felix</groupId> |
| 109 | <artifactId>maven-bundle-plugin</artifactId> |
| 110 | <version>2.3.5</version> |
| 111 | <extensions>true</extensions> |
| 112 | </plugin> |
| 113 | </plugins> |
Arjun Panday | 0462b39 | 2012-11-07 18:55:10 +0000 | [diff] [blame] | 114 | |
| 115 | <!-- added for OBR deployment --> |
| 116 | <extensions> |
| 117 | <extension> |
| 118 | <groupId>org.apache.maven.wagon</groupId> |
| 119 | <artifactId>wagon-ssh</artifactId> |
| 120 | <version>1.0-beta-6</version> |
| 121 | </extension> |
| 122 | </extensions> |
Arjun Panday | 0e4eacc | 2012-01-20 08:21:21 +0000 | [diff] [blame] | 123 | </build> |
| 124 | |
| 125 | </project> |