You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@empire-db.apache.org by fr...@apache.org on 2011/01/24 17:33:02 UTC

svn commit: r1062862 - in /incubator/empire-db/trunk: ./ empire-db-config/ empire-db-config/src/ empire-db-config/src/main/ empire-db-config/src/main/java/ empire-db-config/src/main/java/org/ empire-db-config/src/main/java/org/apache/ empire-db-config/...

Author: francisdb
Date: Mon Jan 24 16:33:02 2011
New Revision: 1062862

URL: http://svn.apache.org/viewvc?rev=1062862&view=rev
Log:
preparing the config module

Added:
    incubator/empire-db/trunk/empire-db-config/
    incubator/empire-db/trunk/empire-db-config/pom.xml
    incubator/empire-db/trunk/empire-db-config/src/
    incubator/empire-db/trunk/empire-db-config/src/main/
    incubator/empire-db/trunk/empire-db-config/src/main/java/
    incubator/empire-db/trunk/empire-db-config/src/main/java/org/
    incubator/empire-db/trunk/empire-db-config/src/main/java/org/apache/
    incubator/empire-db/trunk/empire-db-config/src/main/java/org/apache/empire/
    incubator/empire-db/trunk/empire-db-config/src/main/java/org/apache/empire/xml/
    incubator/empire-db/trunk/empire-db-config/src/test/
    incubator/empire-db/trunk/empire-db-config/src/test/java/
Modified:
    incubator/empire-db/trunk/pom.xml

Added: incubator/empire-db/trunk/empire-db-config/pom.xml
URL: http://svn.apache.org/viewvc/incubator/empire-db/trunk/empire-db-config/pom.xml?rev=1062862&view=auto
==============================================================================
--- incubator/empire-db/trunk/empire-db-config/pom.xml (added)
+++ incubator/empire-db/trunk/empire-db-config/pom.xml Mon Jan 24 16:33:02 2011
@@ -0,0 +1,38 @@
+<?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>
+		<artifactId>empire-db-parent</artifactId>
+		<groupId>org.apache.empire-db</groupId>
+		<version>2.1.0-incubating-SNAPSHOT</version>
+	</parent>
+	<groupId>org.apache.empire-db</groupId>
+	<artifactId>empire-db-config</artifactId>
+	<packaging>jar</packaging>
+	<name>Apache Empire-db Configuration</name>
+	<dependencies>
+
+		<!--  Code dependencies -->
+		<dependency>
+		    <groupId>org.apache.empire-db</groupId>
+		    <artifactId>empire-db</artifactId>
+		</dependency>
+		 
+	</dependencies>
+</project>
\ No newline at end of file

Modified: incubator/empire-db/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/empire-db/trunk/pom.xml?rev=1062862&r1=1062861&r2=1062862&view=diff
==============================================================================
--- incubator/empire-db/trunk/pom.xml (original)
+++ incubator/empire-db/trunk/pom.xml Mon Jan 24 16:33:02 2011
@@ -34,6 +34,7 @@
 	
 	<modules>
 		<module>empire-db</module>
+		<module>empire-db-config</module>
 		<module>empire-db-struts2</module>
 		<module>empire-db-codegen</module>
 		<module>empire-db-maven-plugin</module>