You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by at...@apache.org on 2007/08/20 15:08:39 UTC

svn commit: r567682 - in /portals/jetspeed-2/trunk/jetspeed-portal-resources: ./ pom.xml

Author: ate
Date: Mon Aug 20 06:08:39 2007
New Revision: 567682

URL: http://svn.apache.org/viewvc?rev=567682&view=rev
Log:
JS2-773: A new maven-2 ddl plugin for generating portal schema sql using ddlutils
See: https://issues.apache.org/jira/browse/JS2-773
- integrating ddl generation and packaging in the jetspeed-portal-resources project

Added:
    portals/jetspeed-2/trunk/jetspeed-portal-resources/pom.xml   (with props)
Modified:
    portals/jetspeed-2/trunk/jetspeed-portal-resources/   (props changed)

Propchange: portals/jetspeed-2/trunk/jetspeed-portal-resources/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Aug 20 06:08:39 2007
@@ -0,0 +1,7 @@
+.classpath
+
+.project
+
+.settings
+
+target

Added: portals/jetspeed-2/trunk/jetspeed-portal-resources/pom.xml
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/jetspeed-portal-resources/pom.xml?rev=567682&view=auto
==============================================================================
--- portals/jetspeed-2/trunk/jetspeed-portal-resources/pom.xml (added)
+++ portals/jetspeed-2/trunk/jetspeed-portal-resources/pom.xml Mon Aug 20 06:08:39 2007
@@ -0,0 +1,85 @@
+<?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.7</maven>
+    </prerequisites>
+    
+    <artifactId>jetspeed-portal-resources</artifactId>
+    <name>Jetspeed-2 Portal Resources</name>
+    <description>All resources used for configuring and running a jetspeed portal application</description>
+    <parent>
+        <groupId>org.apache.portals.jetspeed-2</groupId>
+        <artifactId>jetspeed-2</artifactId>
+        <version>2.2-SNAPSHOT</version>
+    </parent>
+    <packaging>jar</packaging>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>${pom.groupId}</groupId>
+        <artifactId>jetspeed-maven-plugins</artifactId>
+        <version>${pom.version}</version>        
+        <executions>
+          <execution>
+            <goals>
+              <goal>ddl</goal>
+            </goals>
+            <configuration>
+              <outputTarget>${project.build.directory}/classes/ddl</outputTarget>
+              <useDelimitedSqlIdentifiers>false</useDelimitedSqlIdentifiers>
+              <sortForeignKeys>false</sortForeignKeys>
+              <validateXml>false</validateXml>
+              <useInternalDtd>true</useInternalDtd>
+              <databases>
+                <param>postgresql</param>
+                <param>mysql</param>
+                <param>mysql5</param>
+                <param>derby</param>
+                <param>oracle9</param>
+                <param>oracle10</param>
+                <!-- DB2v7 -->
+                <param>db2</param>
+                <param>db2v8</param>
+                <param>mssql</param>
+                <param>sapdb</param>
+              </databases>
+              <!-- optional platform and table specific parameters, currently only supported for mysql
+              <parameters>
+                <tablespecificParameter>
+                  <name>foo</name>
+                  <value>bar</value>
+                  <platforms>mysql</platforms>
+                  <!- an empty tables configuration means *all* tables ->
+                  <tables></tables>
+                </tablespecificParameter>
+              </parameters>
+              -->
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: portals/jetspeed-2/trunk/jetspeed-portal-resources/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/jetspeed-2/trunk/jetspeed-portal-resources/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Propchange: portals/jetspeed-2/trunk/jetspeed-portal-resources/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-dev-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-dev-help@portals.apache.org