blob: 346ab0e3796c33b8c5eb96c457e1787825dec8e6 [file] [log] [blame]
Arjun Panday0e4eacc2012-01-20 08:21:21 +00001<?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 Panday5f1f2512012-01-20 08:33:37 +000031 <version>0.1.2-SNAPSHOT</version>
Arjun Panday0e4eacc2012-01-20 08:21:21 +000032 <packaging>pom</packaging>
33
34 <name>Service Diagnostics - Parent</name>
35
36 <scm>
Arjun Panday5f1f2512012-01-20 08:33:37 +000037 <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 Panday0e4eacc2012-01-20 08:21:21 +000040 </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>
92 <groupId>org.scala-tools</groupId>
93 <artifactId>maven-scala-plugin</artifactId>
94 <version>2.15.2</version>
95 <executions>
96 <execution>
97 <goals>
98 <goal>compile</goal>
99 </goals>
100 </execution>
101 </executions>
102 <configuration>
103 <scalaVersion>2.9.1</scalaVersion>
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>
114 </build>
115
116</project>