You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oodt.apache.org by ma...@apache.org on 2011/02/15 23:55:35 UTC

svn commit: r1071099 - /oodt/trunk/pcs/services/pom.xml

Author: mattmann
Date: Tue Feb 15 22:55:35 2011
New Revision: 1071099

URL: http://svn.apache.org/viewvc?rev=1071099&view=rev
Log:
- progress towards OODT-139 PCS JAX-RS services: Health Monitor. Thanks to ahart and pramirez for testing.

Added:
    oodt/trunk/pcs/services/pom.xml

Added: oodt/trunk/pcs/services/pom.xml
URL: http://svn.apache.org/viewvc/oodt/trunk/pcs/services/pom.xml?rev=1071099&view=auto
==============================================================================
--- oodt/trunk/pcs/services/pom.xml (added)
+++ oodt/trunk/pcs/services/pom.xml Tue Feb 15 22:55:35 2011
@@ -0,0 +1,59 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more contributor
+license agreements.  See the NOTICE.txt file distributed with this work for
+additional information regarding copyright ownership.  The ASF licenses this
+file to you under the Apache License, Version 2.0 (the "License"); you may not
+use this file except in compliance with the License.  You may obtain a copy of
+the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
+License for the specific language governing permissions and limitations under
+the License.
+-->
+<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">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.oodt</groupId>
+    <artifactId>oodt-core</artifactId>
+    <version>0.3-SNAPSHOT</version>
+    <relativePath>../../core/pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.oodt</groupId>
+  <artifactId>pcs-services</artifactId>
+  <packaging>war</packaging>
+  <name>OODT Process Control System JAX-RS service layer</name>
+  <description>A web application for exposing services form the underlying 
+  OODT Process Control System via the JAX-RS specification.</description>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.oodt</groupId>
+      <artifactId>pcs-core</artifactId>
+      <version>${project.parent.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>net.sf.json-lib</groupId>
+      <artifactId>json-lib</artifactId>
+      <version>2.3</version>
+      <classifier>jdk15</classifier>
+    </dependency>
+    <dependency>
+       <groupId>servletapi</groupId>
+       <artifactId>servletapi</artifactId>
+       <version>2.4</version>
+       <scope>provided</scope>
+    </dependency>
+   <dependency>
+      <groupId>org.apache.cxf</groupId>
+      <artifactId>cxf-rt-frontend-jaxrs</artifactId>
+      <version>2.3.1</version>
+   </dependency>
+  </dependencies>
+
+</project>