Updated Branches: refs/heads/sqoop2 3631b29e0 -> ff8e0500a
SQOOP-663. Sqoop2: Introduce connector SDK (Jarek Jarcec Cecho via Hari Shreedharan) Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/ff8e0500 Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/ff8e0500 Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/ff8e0500 Branch: refs/heads/sqoop2 Commit: ff8e0500ad2dd9461989b2564c964d30a4666762 Parents: 3631b29 Author: Hari Shreedharan <[email protected]> Authored: Wed Jul 31 11:44:04 2013 -0700 Committer: Hari Shreedharan <[email protected]> Committed: Wed Jul 31 11:44:04 2013 -0700 ---------------------------------------------------------------------- connector/connector-generic-jdbc/pom.xml | 5 ++++ connector/connector-sdk/pom.xml | 43 +++++++++++++++++++++++++++ connector/pom.xml | 1 + pom.xml | 5 ++++ 4 files changed, 54 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/sqoop/blob/ff8e0500/connector/connector-generic-jdbc/pom.xml ---------------------------------------------------------------------- diff --git a/connector/connector-generic-jdbc/pom.xml b/connector/connector-generic-jdbc/pom.xml index 73161f0..fc6cab4 100644 --- a/connector/connector-generic-jdbc/pom.xml +++ b/connector/connector-generic-jdbc/pom.xml @@ -38,6 +38,11 @@ limitations under the License. </dependency> <dependency> + <groupId>org.apache.sqoop</groupId> + <artifactId>connector-sdk</artifactId> + </dependency> + + <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> http://git-wip-us.apache.org/repos/asf/sqoop/blob/ff8e0500/connector/connector-sdk/pom.xml ---------------------------------------------------------------------- diff --git a/connector/connector-sdk/pom.xml b/connector/connector-sdk/pom.xml new file mode 100644 index 0000000..4056e14 --- /dev/null +++ b/connector/connector-sdk/pom.xml @@ -0,0 +1,43 @@ +<?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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 + http://maven.apache.org/xsd/maven-4.0.0.xsd" + xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.sqoop</groupId> + <artifactId>connector</artifactId> + <version>2.0.0-SNAPSHOT</version> + </parent> + + <groupId>org.apache.sqoop</groupId> + <artifactId>connector-sdk</artifactId> + <version>2.0.0-SNAPSHOT</version> + <name>Sqoop Connector SDK</name> + + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + </dependencies> + +</project> http://git-wip-us.apache.org/repos/asf/sqoop/blob/ff8e0500/connector/pom.xml ---------------------------------------------------------------------- diff --git a/connector/pom.xml b/connector/pom.xml index 68969a0..d642c3e 100644 --- a/connector/pom.xml +++ b/connector/pom.xml @@ -33,6 +33,7 @@ limitations under the License. <packaging>pom</packaging> <modules> + <module>connector-sdk</module> <module>connector-generic-jdbc</module> <!-- Uncomment and finish connectors after sqoop framework will become stable <module>connector-mysql-jdbc</module> http://git-wip-us.apache.org/repos/asf/sqoop/blob/ff8e0500/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index c1ed306..5ea0633 100644 --- a/pom.xml +++ b/pom.xml @@ -280,6 +280,11 @@ limitations under the License. <version>${project.version}</version> </dependency> <dependency> + <groupId>org.apache.sqoop</groupId> + <artifactId>connector-sdk</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> <groupId>org.apache.sqoop.connector</groupId> <artifactId>sqoop-connector-generic-jdbc</artifactId> <version>${project.version}</version>
