You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ke...@apache.org on 2011/07/07 16:34:27 UTC

svn commit: r1143846 - in /incubator/isis/trunk/framework/runtimes/dflt/profilestores: ./ sql/ sql/src/ sql/src/main/ sql/src/main/java/ sql/src/main/java/org/ sql/src/main/java/org/apache/ sql/src/main/java/org/apache/isis/ sql/src/main/java/org/apach...

Author: kevin
Date: Thu Jul  7 14:34:26 2011
New Revision: 1143846

URL: http://svn.apache.org/viewvc?rev=1143846&view=rev
Log:
Getting ready to move the Sql (jdbc) profile store from out of the sql objectstore module to here runtimes.dflt.profilestores.

Added:
    incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/
    incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/NOTICE   (with props)
    incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/pom.xml   (with props)
    incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/src/
    incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/src/main/
    incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/src/main/java/
    incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/src/main/java/org/
    incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/src/main/java/org/apache/
    incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/src/main/java/org/apache/isis/
    incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/src/main/java/org/apache/isis/runtimes/
    incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/src/main/java/org/apache/isis/runtimes/dflt/
    incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/src/main/java/org/apache/isis/runtimes/dflt/profilestores/
    incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/src/main/java/org/apache/isis/runtimes/dflt/profilestores/sql/
    incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/src/site/
Modified:
    incubator/isis/trunk/framework/runtimes/dflt/profilestores/pom.xml

Modified: incubator/isis/trunk/framework/runtimes/dflt/profilestores/pom.xml
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/framework/runtimes/dflt/profilestores/pom.xml?rev=1143846&r1=1143845&r2=1143846&view=diff
==============================================================================
--- incubator/isis/trunk/framework/runtimes/dflt/profilestores/pom.xml (original)
+++ incubator/isis/trunk/framework/runtimes/dflt/profilestores/pom.xml Thu Jul  7 14:34:26 2011
@@ -49,6 +49,7 @@
 	<modules>
 		<module>dflt</module>
 		<module>xml</module>
+		<module>sql</module>
 	</modules>
 
 	<reporting>

Added: incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/NOTICE
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/NOTICE?rev=1143846&view=auto
==============================================================================
--- incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/NOTICE (added)
+++ incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/NOTICE Thu Jul  7 14:34:26 2011
@@ -0,0 +1,7 @@
+Apache Isis
+Copyright 2010-2011 The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
+
+

Propchange: incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/NOTICE
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/pom.xml
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/pom.xml?rev=1143846&view=auto
==============================================================================
--- incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/pom.xml (added)
+++ incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/pom.xml Thu Jul  7 14:34:26 2011
@@ -0,0 +1,98 @@
+<?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.
+-->
+<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.isis.runtimes.dflt</groupId>
+		<artifactId>profilestores</artifactId>
+		<version>0.1.2-incubating-SNAPSHOT</version>
+	</parent>
+
+	<groupId>org.apache.isis.runtimes.dflt.profilestores</groupId>
+	<artifactId>sql</artifactId>
+	<name>Sql ProfileStore (jdbc)</name>
+
+	<properties>
+        <siteBaseDir>../../../..</siteBaseDir>
+		<relativeUrl>runtimes/dflt/profilestores/dflt/</relativeUrl>
+	</properties>
+
+    <!-- used in Site generation for relative references. -->
+    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+				<version>${maven-project-info-reports-plugin}</version>
+                <inherited>false</inherited>
+                <configuration>
+                	<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
+                </configuration>
+                <reportSets>
+                    <reportSet>
+                        <inherited>false</inherited>
+                        <reports>
+                            <report>dependencies</report>
+                            <report>dependency-convergence</report>
+                            <report>plugins</report>
+                            <report>summary</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+        </plugins>
+    </reporting>
+
+    <dependencies>
+	<dependency>
+		<groupId>org.hsqldb</groupId>
+		<artifactId>hsqldb</artifactId>
+		<scope>test</scope>
+	</dependency>
+
+        <dependency>
+            <groupId>org.apache.isis.core</groupId>
+            <artifactId>testsupport</artifactId>
+            <scope>test</scope>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.apache.isis.core</groupId>
+            <artifactId>metamodel</artifactId>
+            <type>test-jar</type>
+            <scope>test</scope>
+        </dependency>
+
+		<dependency>
+		    <groupId>org.apache.isis.runtimes.dflt</groupId>
+		    <artifactId>runtime</artifactId>
+		</dependency>
+		<dependency>
+		    <groupId>org.apache.isis.runtimes.dflt</groupId>
+		    <artifactId>runtime</artifactId>
+		    <type>test-jar</type>
+		    <scope>test</scope>
+		</dependency>
+	</dependencies>
+
+</project>

Propchange: incubator/isis/trunk/framework/runtimes/dflt/profilestores/sql/pom.xml
------------------------------------------------------------------------------
    svn:executable = *