blob: 856e3e1d5f6f1f71d7c454106ad6baf72ae3be82 [file] [log] [blame]
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +00001<?xml version="1.0" encoding="UTF-8"?>
Arjun Panday28d29492011-12-29 20:57:25 +00002<!--
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-->
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +000020<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +000022 <modelVersion>4.0.0</modelVersion>
Arjun Panday28d29492011-12-29 20:57:25 +000023 <parent>
24 <groupId>org.apache.felix</groupId>
25 <artifactId>felix-parent</artifactId>
26 <version>2.1</version>
27 <relativePath>../../pom/pom.xml</relativePath>
28 </parent>
29
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +000030 <groupId>org.apache.felix</groupId>
31 <artifactId>servicediagnostics</artifactId>
Arjun Panday28d29492011-12-29 20:57:25 +000032 <version>0.1.0-SNAPSHOT</version>
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +000033 <packaging>pom</packaging>
34
Arjun Panday28d29492011-12-29 20:57:25 +000035 <name>Service Diagnostics Plugin - Parent</name>
36 <description>
37 This is a plugin for the Apache Felix OSGi web console providing a graphical representation of services and missing required dependencies.
38 </description>
39
40 <scm>
41 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/servicediagnostics</connection>
42 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/servicediagnostics</developerConnection>
43 <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/servicediagnostics</url>
44 </scm>
45
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +000046 <modules>
47 <module>core</module>
48 <module>sample</module>
49 </modules>
50
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +000051 <repositories>
52 <repository>
53 <id>scala-tools.org</id>
54 <name>Scala-tools Maven2 Repository</name>
55 <url>http://scala-tools.org/repo-releases</url>
56 </repository>
57 </repositories>
58
59 <pluginRepositories>
60 <pluginRepository>
61 <id>scala-tools.org</id>
62 <name>Scala-tools Maven2 Repository</name>
63 <url>http://scala-tools.org/repo-releases</url>
64 </pluginRepository>
65 </pluginRepositories>
66
67 <dependencies>
68 <dependency>
69 <groupId>org.osgi</groupId>
70 <artifactId>org.osgi.core</artifactId>
71 <version>4.2.0</version>
72 </dependency>
73 <dependency>
74 <groupId>org.osgi</groupId>
75 <artifactId>org.osgi.compendium</artifactId>
76 <version>4.2.0</version>
77 </dependency>
78 <dependency>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>org.apache.felix.scr</artifactId>
81 <version>1.6.0</version>
82 </dependency>
83 <dependency>
84 <groupId>org.apache.felix</groupId>
85 <artifactId>org.apache.felix.dependencymanager</artifactId>
86 <version>3.0.0</version>
87 </dependency>
88 <dependency>
89 <groupId>biz.aQute</groupId>
90 <artifactId>bndlib</artifactId>
91 <version>1.43.0</version>
92 </dependency>
93 </dependencies>
94
95 <build>
96 <sourceDirectory>src/main/scala</sourceDirectory>
97 <testSourceDirectory>src/test/scala</testSourceDirectory>
98
99 <plugins>
100 <plugin>
101 <groupId>org.scala-tools</groupId>
102 <artifactId>maven-scala-plugin</artifactId>
103 <executions>
104 <execution>
105 <goals>
106 <goal>compile</goal>
107 </goals>
108 </execution>
109 </executions>
Arjun Panday28d29492011-12-29 20:57:25 +0000110 <configuration>
111 <scalaVersion>2.9.1</scalaVersion>
112 </configuration>
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +0000113 </plugin>
114
115 <plugin>
116 <groupId>org.apache.felix</groupId>
117 <artifactId>maven-bundle-plugin</artifactId>
118 <version>2.3.5</version>
119 <extensions>true</extensions>
120 </plugin>
121 </plugins>
122 </build>
123
124</project>