You are viewing a plain text version of this content. The canonical link for it is here.
Posted to portalapps-dev@portals.apache.org by vk...@apache.org on 2009/04/16 14:28:49 UTC

svn commit: r765606 - in /portals/applications/dbbrowser/trunk: ./ dbbrowser-jar/ dbbrowser-war/ dbbrowser-war/src/main/java/ dbbrowser-war/src/main/resources/ dbbrowser-war/src/main/webapp/WEB-INF/ dbbrowser-war/src/main/webapp/WEB-INF/velocity/

Author: vkumar
Date: Thu Apr 16 12:28:48 2009
New Revision: 765606

URL: http://svn.apache.org/viewvc?rev=765606&view=rev
Log:
Cleaning up and adding pom.xml for sub modules
https://issues.apache.org/jira/browse/APA-4

Added:
    portals/applications/dbbrowser/trunk/dbbrowser-jar/pom.xml   (with props)
    portals/applications/dbbrowser/trunk/dbbrowser-war/pom.xml   (with props)
    portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/resources/
      - copied from r765578, portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/java/
    portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/velocity/
    portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/velocity/toolbox.xml   (with props)
    portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/velocity/velocity-macros.vm
    portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/velocity/velocity.properties   (with props)
Removed:
    portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/java/
Modified:
    portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/portlet.xml
    portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/web.xml
    portals/applications/dbbrowser/trunk/pom.xml

Added: portals/applications/dbbrowser/trunk/dbbrowser-jar/pom.xml
URL: http://svn.apache.org/viewvc/portals/applications/dbbrowser/trunk/dbbrowser-jar/pom.xml?rev=765606&view=auto
==============================================================================
--- portals/applications/dbbrowser/trunk/dbbrowser-jar/pom.xml (added)
+++ portals/applications/dbbrowser/trunk/dbbrowser-jar/pom.xml Thu Apr 16 12:28:48 2009
@@ -0,0 +1,96 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements. See the NOTICE 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. $Id:$
+-->
+<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>
+  <prerequisites>
+    <maven>2.0.4</maven>
+  </prerequisites>
+
+  <!-- POM Identification -->
+  <parent>
+    <groupId>org.apache.portals.applications</groupId>
+    <artifactId>apa-dbbrowser</artifactId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
+
+  <groupId>org.apache.portals.applications</groupId>
+  <artifactId>apa-dbbrowser-jar</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <name>Portals Database Browser application JAR</name>
+
+  <!-- Dependencies -->
+
+  <properties>
+    <portlet-api.version>2.0</portlet-api.version>
+    <org.apache.portals.bridges.velocity.version>1.0.4</org.apache.portals.bridges.velocity.version>
+    <commons-logging.version>1.1</commons-logging.version>
+    <poi.version>3.0-FINAL</poi.version>
+    <commons-collections.version>3.2</commons-collections.version>
+    <commons-digester.version>1.8</commons-digester.version>
+    <commons-dbcp.version>1.2.2</commons-dbcp.version>
+  </properties>
+  <dependencies>
+
+    <!-- Build Dependencies -->
+    <dependency>
+      <groupId>javax.portlet</groupId>
+      <artifactId>portlet-api</artifactId>
+      <version>${portlet-api.version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.portals.bridges</groupId>
+      <artifactId>portals-bridges-velocity</artifactId>
+      <version>${org.apache.portals.bridges.velocity.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+      <version>${commons-logging.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>javax.servlet</groupId>
+          <artifactId>servlet-api</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi</artifactId>
+      <version>${poi.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-dbcp</groupId>
+      <artifactId>commons-dbcp</artifactId>
+      <version>${commons-dbcp.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+      <scope>runtime</scope>
+      <version>${commons-collections.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-digester</groupId>
+      <artifactId>commons-digester</artifactId>
+      <version>${commons-digester.version}</version>
+      <scope>runtime</scope>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

Propchange: portals/applications/dbbrowser/trunk/dbbrowser-jar/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: portals/applications/dbbrowser/trunk/dbbrowser-war/pom.xml
URL: http://svn.apache.org/viewvc/portals/applications/dbbrowser/trunk/dbbrowser-war/pom.xml?rev=765606&view=auto
==============================================================================
--- portals/applications/dbbrowser/trunk/dbbrowser-war/pom.xml (added)
+++ portals/applications/dbbrowser/trunk/dbbrowser-war/pom.xml Thu Apr 16 12:28:48 2009
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements. See the NOTICE 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. $Id:$
+-->
+<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>
+  <prerequisites>
+    <maven>2.0.4</maven>
+  </prerequisites>
+
+  <!-- POM Identification -->
+  <groupId>org.apache.portals.applications</groupId>
+  <artifactId>apa-dbbrowser-war</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <parent>
+    <groupId>org.apache.portals.applications</groupId>
+    <artifactId>apa-dbbrowser</artifactId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
+  <packaging>war</packaging>
+  <name>Portals Database Browser application WAR</name>
+
+  <properties>
+      <velocity.version>1.5</velocity.version>
+      <velocity-tools.version>1.3</velocity-tools.version>      
+      <portals.applications.apa-webapp-logging.version>1.0-SNAPSHOT</portals.applications.apa-webapp-logging.version>
+  </properties>
+  <dependencies>
+    <!-- Runtime Dependencies -->
+    <dependency>
+      <groupId>${pom.groupId}</groupId>
+      <artifactId>apa-dbbrowser-jar</artifactId>
+      <version>${pom.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>velocity</groupId>
+      <artifactId>velocity</artifactId>
+      <version>${velocity.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>velocity-tools</groupId>
+      <artifactId>velocity-tools</artifactId>
+      <version>${velocity-tools.version}</version>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.portals.applications</groupId>
+      <artifactId>apa-webapp-logging</artifactId>
+      <version>${portals.applications.apa-webapp-logging.version}</version>
+    </dependency>
+  </dependencies>
+  <build>
+        <finalName>apa-dbbrowser</finalName>
+  </build>
+</project>
\ No newline at end of file

Propchange: portals/applications/dbbrowser/trunk/dbbrowser-war/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/portlet.xml
URL: http://svn.apache.org/viewvc/portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/portlet.xml?rev=765606&r1=765605&r2=765606&view=diff
==============================================================================
--- portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/portlet.xml (original)
+++ portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/portlet.xml Thu Apr 16 12:28:48 2009
@@ -13,7 +13,7 @@
   KIND, either express or implied. See the License for the specific language
   governing permissions and limitations under the License.
 -->
-<portlet-app id="apa-dbBrowser"
+<portlet-app id="apa-dbbrowser"
   xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd" version="2.0"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd">

Added: portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/velocity/toolbox.xml
URL: http://svn.apache.org/viewvc/portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/velocity/toolbox.xml?rev=765606&view=auto
==============================================================================
--- portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/velocity/toolbox.xml (added)
+++ portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/velocity/toolbox.xml Thu Apr 16 12:28:48 2009
@@ -0,0 +1,19 @@
+<?xml version="1.0"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE 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.
+-->
+<toolbox>
+</toolbox>
\ No newline at end of file

Propchange: portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/velocity/toolbox.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/velocity/velocity-macros.vm
URL: http://svn.apache.org/viewvc/portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/velocity/velocity-macros.vm?rev=765606&view=auto
==============================================================================
--- portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/velocity/velocity-macros.vm (added)
+++ portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/velocity/velocity-macros.vm Thu Apr 16 12:28:48 2009
@@ -0,0 +1,130 @@
+#*
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE 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.
+*#
+#macro (headerCell $body)
+  <th class="portlet-section-header">
+    <b>     
+        $body
+    </b>
+  </th>
+#end
+
+#macro (entryCell $body)
+  <td class='portlet-section-body'>    
+      $body &nbsp;    
+  </td>
+#end
+
+#macro (entryCell2 $body $count)
+#if (($count % 2) == 0)
+  <td class='portlet-section-body'>    
+#else
+  <td class='portlet-section-alternate'>    
+#end
+      $body &nbsp;    
+  </td>
+#end
+
+
+#macro (formField $label $value $size $id $MESSAGES $ERRORS)
+#if ($ERRORS)
+#set ($eflag = "$!ERRORS.get($id)")
+#else
+#set ($eflag = "")
+#end
+  <tr colspan="4" align="right">
+  #if ($!eflag == "")
+    <td width="5%" align="left">&nbsp;</td>
+  #else
+    <td width="5%" class="portlet-msg-error" align="left">&nbsp;</td>  
+  #end
+    <td nowrap class="portlet-section-alternate" align="right">$!MESSAGES.getString($label):&nbsp;</td>
+    <td class="portlet-section-body" align="left">
+      <input id="$!id" type="text" name="$!id" size="$!size" value="$!value" class="portlet-form-field-label">
+    </td>
+    <td width="5%" class="portlet-form-label" align="left">&nbsp;</td>
+  </tr>
+#end
+
+#macro (ErrorMessages $ERRORS)
+#if ($ERRORS)
+#if ($ERRORS.size() > 0)
+#foreach ($msg in $ERRORS)
+<div class="portlet-msg-error">
+$msg<br/>
+</div>
+#end
+<br/>
+#end
+#end
+#end
+
+#macro (OnePref $pf)
+#set ($pv = $pf.Value)
+#foreach ($x in $pv)
+#set ($extr = $x)
+#end
+$pf.Key $!extr
+#end
+
+#macro (prefField $key $values $size)
+#if ($ERRORS)
+#set ($eflag = "$!ERRORS.get($id)")
+#else
+#set ($eflag = "")
+#end
+#set ($pv = $pf.Value)
+#foreach ($x in $pv)
+#set ($extr = $x)
+#end
+#foreach ($x in $values)
+#set ($extr = $x)
+#end
+  <tr colspan="4" align="right">
+  #if ($!eflag == "")
+    <td width="5%" align="left">&nbsp;</td>
+  #else
+    <td width="5%" class="portlet-msg-error" align="left">&nbsp;</td>  
+  #end
+    <td nowrap class="portlet-section-alternate" align="right">$!key:&nbsp;</td>
+    <td class="portlet-section-body" align="left">
+      <input id="$!id" type="text" name="$!key" size="$!size" value="$!extr" class="portlet-form-field-label">
+    </td>
+    <td width="5%" class="portlet-form-label" align="left">&nbsp;</td>
+  </tr>
+#end
+
+#macro (form4ColumnCell $label $value $size $id)
+  <tr colspan="4" align="right">
+    <td width="5%" class="portlet-form-label" align="left">&nbsp;</td>
+    <td nowrap class="portlet-section-alternate" align="left">$!label:&nbsp;</td>
+    <td class="portlet-form-input-field" align="left">
+      <input id="$!id" type="text" name="$!id" size="$!size" value="$!value">
+    </td>
+    <td width="5%" class="portlet-form-label" align="left">&nbsp;</td>
+  </tr>
+#end
+
+#macro (form4PasswordCell $label $value $size $id)
+  <tr colspan="4" align="right">
+    <td width="5%" class="portlet-form-label" align="left">&nbsp;</td>
+    <td nowrap class="portlet-section-alternate" align="left">$!label:&nbsp;</td>
+    <td class="portlet-form-input-field" align="left">
+      <input id="$!id" type="password" name="$!id" size="$!size" value="$!value">
+    </td>
+    <td width="5%" class="portlet-form-label" align="left">&nbsp;</td>
+  </tr>
+#end

Added: portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/velocity/velocity.properties
URL: http://svn.apache.org/viewvc/portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/velocity/velocity.properties?rev=765606&view=auto
==============================================================================
--- portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/velocity/velocity.properties (added)
+++ portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/velocity/velocity.properties Thu Apr 16 12:28:48 2009
@@ -0,0 +1,115 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE 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.
+
+#----------------------------------------------------------------------------
+# These are the default properties for the
+# Velocity Runtime. These values are used when
+# Runtime.init() is called, and when Runtime.init(properties)
+# fails to find the specificed properties file.
+#----------------------------------------------------------------------------
+
+#----------------------------------------------------------------------------
+# R U N T I M E  L O G  
+#----------------------------------------------------------------------------
+# This is the location of the Velocity Runtime log.
+#----------------------------------------------------------------------------
+
+runtime.log = velocity.log
+
+# use Commons Logging for routing Velocity message through our IsolatedLog4JLogger
+runtime.log.logsystem.class =org.apache.portals.applications.webapp.logging.velocity.CommonsLoggingLog4JLogSystem
+# Log4J Category used (default is "velocity")
+runtime.log.logsystem.log4j.category = velocity
+
+#----------------------------------------------------------------------------
+# T E M P L A T E  E N C O D I N G
+#----------------------------------------------------------------------------
+
+template.encoding=8859_1
+
+#----------------------------------------------------------------------------
+# C O N T E N T  T Y P E  
+#----------------------------------------------------------------------------
+# This is the default content type for the VelocityServlet.
+#----------------------------------------------------------------------------
+
+default.contentType=text/html
+
+#----------------------------------------------------------------------------
+# F O R E A C H  P R O P E R T I E S
+#----------------------------------------------------------------------------
+# These properties control how the counter is accessed in the #foreach
+# directive. By default the reference $velocityCount will be available
+# in the body of the #foreach directive. The default starting value
+# for this reference is 1.
+#----------------------------------------------------------------------------
+
+counter.name = velocityCount
+counter.initial.value = 1
+
+#----------------------------------------------------------------------------
+# I N C L U D E  P R O P E R T I E S
+#----------------------------------------------------------------------------
+# These are the properties that governed the way #include'd content
+# is governed.
+#----------------------------------------------------------------------------
+
+include.path=.
+include.cache = false
+include.output.errormsg.start = <!-- include error : 
+include.output.errormsg.end   =  see error log -->
+
+#----------------------------------------------------------------------------
+# P A R S E  P R O P E R T I E S
+#----------------------------------------------------------------------------
+
+parse_directive.maxdepth = 10
+
+#----------------------------------------------------------------------------
+# T E M P L A T E  L O A D E R S
+#----------------------------------------------------------------------------
+# 
+# 
+#----------------------------------------------------------------------------
+
+template.loader.1.public.name = File
+template.loader.1.description = Velocity File Template Loader
+template.loader.1.class = org.apache.velocity.runtime.loader.FileTemplateLoader
+template.loader.1.template.path = .
+template.loader.1.cache = false
+template.loader.1.modificationCheckInterval = 2
+
+velocimacro.library.autoreload = true
+velocimacro.permissions.allow.inline.to.replace.global = true
+velocimacro.library = /WEB-INF/velocity/velocity-macros.vm
+
+#template.loader.2.public.name = URL
+#template.loader.2.description = Velocity URL Template Loader
+#template.loader.2.class = org.apache.velocity.runtime.loader.URLTemplateLoader
+#template.loader.2.template.path = http://localhost/templates/
+#template.loader.2.cache = false
+
+#----------------------------------------------------------------------------
+# E X T E R N A L  S E R V I C E  I N I T I A L I Z A T I O N
+#----------------------------------------------------------------------------
+# If this property is set to true then an external service will
+# set certain system properties and initialize the Velocity
+# Runtime. This method is used by Turbine to initialize the
+# Velocity Runtime for the TurbineVelocityService.
+#----------------------------------------------------------------------------
+
+external.init = false
+
+

Propchange: portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/velocity/velocity.properties
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/web.xml?rev=765606&r1=765605&r2=765606&view=diff
==============================================================================
--- portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/web.xml (original)
+++ portals/applications/dbbrowser/trunk/dbbrowser-war/src/main/webapp/WEB-INF/web.xml Thu Apr 16 12:28:48 2009
@@ -30,7 +30,7 @@
     <servlet-class>org.apache.jetspeed.container.JetspeedContainerServlet</servlet-class>
     <init-param>
       <param-name>contextName</param-name>
-      <param-value>apa-dbBrowser</param-value>
+      <param-value>apa-dbbrowser</param-value>
     </init-param>
     <load-on-startup>100</load-on-startup>
   </servlet>

Modified: portals/applications/dbbrowser/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/applications/dbbrowser/trunk/pom.xml?rev=765606&r1=765605&r2=765606&view=diff
==============================================================================
--- portals/applications/dbbrowser/trunk/pom.xml (original)
+++ portals/applications/dbbrowser/trunk/pom.xml Thu Apr 16 12:28:48 2009
@@ -29,7 +29,7 @@
   </parent>
 
   <groupId>org.apache.portals.applications</groupId>
-  <artifactId>apa-databaseBrowser</artifactId>
+  <artifactId>apa-dbbrowser</artifactId>
   <packaging>pom</packaging>
   <name>Portals Database Browser Application</name>
   <version>1.0-SNAPSHOT</version>
@@ -38,16 +38,16 @@
   <!-- Application Modules -->
 
   <modules>
-    <module>dbBrowser-jar</module>
-    <module>dbBrowser-war</module>
+    <module>dbbrowser-jar</module>
+    <module>dbbrowser-war</module>
   </modules>
 
   <!-- Project Information -->
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/portals/applications/databaseBrowser/trunk</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/applications/databaseBrowser/trunk</developerConnection>
-    <url>http://svn.apache.org/viewcvs.cgi/portals/applications/databaseBrowser/trunk/</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/portals/applications/dbbrowser/trunk</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/applications/dbbrowser/trunk</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/portals/applications/dbbrowser/trunk/</url>
   </scm>
 
 </project>