You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sqoop.apache.org by ab...@apache.org on 2015/01/08 02:54:18 UTC

sqoop git commit: SQOOP-1973: Sqoop2: Remove maven module spi completely after merging it with connector-sdk

Repository: sqoop
Updated Branches:
  refs/heads/sqoop2 fb7edeb23 -> 6d009c6c0


SQOOP-1973: Sqoop2: Remove maven module spi completely after merging it with connector-sdk

(Jarek Jarcec Cecho via Abraham Elmahrek)


Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/6d009c6c
Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/6d009c6c
Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/6d009c6c

Branch: refs/heads/sqoop2
Commit: 6d009c6c0672a0e82a9bff6dd5814cf9a38b1f4d
Parents: fb7edeb
Author: Abraham Elmahrek <ab...@apache.org>
Authored: Wed Jan 7 17:53:43 2015 -0800
Committer: Abraham Elmahrek <ab...@apache.org>
Committed: Wed Jan 7 17:53:43 2015 -0800

----------------------------------------------------------------------
 spi/pom.xml                             | 45 ----------------------------
 spi/src/test/resources/log4j.properties | 24 ---------------
 2 files changed, 69 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/sqoop/blob/6d009c6c/spi/pom.xml
----------------------------------------------------------------------
diff --git a/spi/pom.xml b/spi/pom.xml
deleted file mode 100644
index 43f17d4..0000000
--- a/spi/pom.xml
+++ /dev/null
@@ -1,45 +0,0 @@
-<?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/xsd/maven-4.0.0.xsd">
-
-  <modelVersion>4.0.0</modelVersion>
-
-  <parent>
-    <groupId>org.apache</groupId>
-    <artifactId>sqoop</artifactId>
-    <version>2.0.0-SNAPSHOT</version>
-  </parent>
-
-  <groupId>org.apache.sqoop</groupId>
-  <artifactId>sqoop-spi</artifactId>
-  <name>Sqoop SPI</name>
-
-  <dependencies>
-    <dependency>
-      <groupId>org.apache.sqoop</groupId>
-      <artifactId>sqoop-common</artifactId>
-    </dependency>
-
-    <dependency>
-      <groupId>org.apache.sqoop</groupId>
-      <artifactId>connector-sdk</artifactId>
-    </dependency>
-  </dependencies>
-</project>

http://git-wip-us.apache.org/repos/asf/sqoop/blob/6d009c6c/spi/src/test/resources/log4j.properties
----------------------------------------------------------------------
diff --git a/spi/src/test/resources/log4j.properties b/spi/src/test/resources/log4j.properties
deleted file mode 100644
index 44ffced..0000000
--- a/spi/src/test/resources/log4j.properties
+++ /dev/null
@@ -1,24 +0,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.
-
-# Set root logger level to DEBUG and its only appender to A1.
-log4j.rootLogger=DEBUG, A1
-
-# A1 is set to be a ConsoleAppender.
-log4j.appender.A1=org.apache.log4j.ConsoleAppender
-
-# A1 uses PatternLayout.
-log4j.appender.A1.layout=org.apache.log4j.PatternLayout
-log4j.appender.A1.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n