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/10/25 18:03:17 UTC

svn commit: r1188753 - in /oodt/trunk/pcs/opsui: ./ pom.xml src/ src/java/ src/java/org/ src/java/org/apache/ src/java/org/apache/oodt/ src/java/org/apache/oodt/pcs/ src/java/org/apache/oodt/pcs/opsui/ src/main/

Author: mattmann
Date: Tue Oct 25 16:03:16 2011
New Revision: 1188753

URL: http://svn.apache.org/viewvc?rev=1188753&view=rev
Log:
- progress towards OODT-157 PCS Operator User Interface web application

Added:
    oodt/trunk/pcs/opsui/
    oodt/trunk/pcs/opsui/pom.xml   (with props)
    oodt/trunk/pcs/opsui/src/
    oodt/trunk/pcs/opsui/src/java/
    oodt/trunk/pcs/opsui/src/java/org/
    oodt/trunk/pcs/opsui/src/java/org/apache/
    oodt/trunk/pcs/opsui/src/java/org/apache/oodt/
    oodt/trunk/pcs/opsui/src/java/org/apache/oodt/pcs/
    oodt/trunk/pcs/opsui/src/java/org/apache/oodt/pcs/opsui/
    oodt/trunk/pcs/opsui/src/main/

Added: oodt/trunk/pcs/opsui/pom.xml
URL: http://svn.apache.org/viewvc/oodt/trunk/pcs/opsui/pom.xml?rev=1188753&view=auto
==============================================================================
--- oodt/trunk/pcs/opsui/pom.xml (added)
+++ oodt/trunk/pcs/opsui/pom.xml Tue Oct 25 16:03:16 2011
@@ -0,0 +1,138 @@
+<?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>
+	<groupId>org.apache.oodt</groupId>
+	<artifactId>pcs-opsui</artifactId>
+	<packaging>war</packaging>
+	<version>0.3-SNAPSHOT</version>
+	<name>Process Control System Operator Interface Webapp</name>
+	<properties>
+		<wicket.version>1.4.16</wicket.version>
+		<jetty.version>6.1.25</jetty.version>
+		<slf4j.version>1.5.8</slf4j.version>
+		<log4j.version>1.2.14</log4j.version>
+	</properties>
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.wicket</groupId>
+			<artifactId>wicket</artifactId>
+			<version>${wicket.version}</version>
+		</dependency>
+		<dependency>
+		  <groupId>org.apache.oodt</groupId>
+		  <artifactId>oodt-webapp-components</artifactId>
+		  <version>0.3-SNAPSHOT</version>
+		  <exclusions>
+		    <exclusion>
+		      <artifactId>cas-filemgr</artifactId>
+		      <groupId>org.apache.oodt</groupId>
+		    </exclusion>
+		    <exclusion>
+		      <artifactId>cas-workflow</artifactId>
+		      <groupId>org.apache.oodt</groupId>
+		    </exclusion>
+		  </exclusions>
+		</dependency>
+
+		<!-- LOGGING DEPENDENCIES - LOG4J -->
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-log4j12</artifactId>
+			<version>${slf4j.version}</version>
+		</dependency>
+		<dependency>
+			<groupId>log4j</groupId>
+			<artifactId>log4j</artifactId>
+			<version>1.2.14</version>
+		</dependency>
+
+		<!--  JUNIT DEPENDENCY FOR TESTING -->
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<version>4.8.1</version>
+			<scope>test</scope>
+		</dependency>
+
+		<!--  JETTY DEPENDENCIES FOR TESTING  -->
+		<dependency>
+			<groupId>org.mortbay.jetty</groupId>
+			<artifactId>jetty</artifactId>
+			<version>${jetty.version}</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.mortbay.jetty</groupId>
+			<artifactId>jetty-util</artifactId>
+			<version>${jetty.version}</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.mortbay.jetty</groupId>
+			<artifactId>jetty-management</artifactId>
+			<version>${jetty.version}</version>
+			<scope>provided</scope>
+		</dependency>
+	</dependencies>
+	<build>
+		<resources>
+			<resource>
+				<filtering>false</filtering>
+				<directory>src/main/resources</directory>
+			</resource>
+			<resource>
+				<filtering>false</filtering>
+				<directory>src/main/java</directory>
+				<includes>
+					<include>**</include>
+				</includes>
+				<excludes>
+					<exclude>**/*.java</exclude>
+				</excludes>
+			</resource>
+		</resources>
+		<testResources>
+			<testResource>
+				<filtering>false</filtering>
+				<directory>src/test/java</directory>
+				<includes>
+					<include>**</include>
+				</includes>
+				<excludes>
+					<exclude>**/*.java</exclude>
+				</excludes>
+			</testResource>
+		</testResources>
+		<plugins>
+			<plugin>
+				<inherited>true</inherited>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.5</source>
+					<target>1.5</target>
+					<optimize>true</optimize>
+					<debug>true</debug>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+	</project>
\ No newline at end of file

Propchange: oodt/trunk/pcs/opsui/pom.xml
------------------------------------------------------------------------------
    svn:executable = *