mirror of
https://github.com/apache/sqoop.git
synced 2025-05-16 17:00:53 +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
46 lines
1.9 KiB
XML
46 lines
1.9 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-cloudera">
|
|
<license name="Apache 2.0"/>
|
|
<ivyauthor name="Sqoop Team" url="http://github.com/cloudera/sqoop" />
|
|
<description>
|
|
Sqoop shim for Cloudera's Distribution for 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 Cloudera's Distribution for Hadoop -->
|
|
<dependency org="com.cloudera.hadoop" name="hadoop-core"
|
|
rev="${hadoop-core.cloudera.version}" conf="common->default"/>
|
|
</dependencies>
|
|
</ivy-module>
|