mirror of
https://github.com/apache/sqoop.git
synced 2025-05-02 14:59:55 +08:00

Maven pushes sqoop jar and shim jars. Renamed shim jar files to conform to maven artifact-version naming. From: Aaron Kimball <aaron@cloudera.com> git-svn-id: https://svn.apache.org/repos/asf/incubator/sqoop/trunk@1149925 13f79535-47bb-0310-9956-ffa450edef68
50 lines
2.1 KiB
XML
50 lines
2.1 KiB
XML
<?xml version="1.0" ?>
|
|
<!--
|
|
Licensed to Cloudera, Inc. under one or more
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
this work for additional information regarding copyright ownership.
|
|
Cloudera, Inc. 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.
|
|
-->
|
|
<ivy-module version="1.0">
|
|
<info organisation="com.cloudera.sqoop" module="${name}-shim-apache">
|
|
<license name="Apache 2.0"/>
|
|
<ivyauthor name="Sqoop Team" url="http://github.com/cloudera/sqoop" />
|
|
<description>
|
|
Sqoop shim for Apache Hadoop
|
|
</description>
|
|
</info>
|
|
<configurations defaultconfmapping="default">
|
|
<!--these match the Maven configurations-->
|
|
<conf name="default" extends="master,runtime"/>
|
|
<conf name="master" description="contains the artifact but no dependencies"/>
|
|
<conf name="runtime" description="runtime but not the artifact" />
|
|
<conf name="common" visibility="private"
|
|
extends="runtime"
|
|
description="artifacts needed to compile/test the application"/>
|
|
</configurations>
|
|
|
|
<publications>
|
|
<!--get the artifact from our module name-->
|
|
<artifact conf="master"/>
|
|
</publications>
|
|
<dependencies>
|
|
<!-- Dependencies for Apache Hadoop (trunk) -->
|
|
<dependency org="org.apache.hadoop" name="hadoop-common"
|
|
rev="${hadoop-common.apache.version}" conf="common->default"/>
|
|
<dependency org="org.apache.hadoop" name="hadoop-hdfs"
|
|
rev="${hadoop-hdfs.apache.version}" conf="common->default"/>
|
|
<dependency org="org.apache.hadoop" name="hadoop-mapred"
|
|
rev="${hadoop-mapred.apache.version}" conf="common->default"/>
|
|
</dependencies>
|
|
</ivy-module>
|