mirror of
https://github.com/apache/sqoop.git
synced 2025-05-02 16:51:44 +08:00

Sqoop now builds a sqoop-test-(version).jar file. Added "jar-all" target to build.xml to build all artifacts. Default ant target switched to "jar-all". mvn-install, mvn-deploy updated deploy to deploy all main, test, and shim jars. Added source jar artifacts to maven installation/deploy process. Fixed build dependency bugs in generated poms. Added Sqoop pom template; generating from ivy.xml was over-broad. write-version-info.sh generates correct directory hierarchy in build/src/. bin/sqoop and bin/configure-sqoop tweaked to account for multiple sqoop-* jars in the $SQOOP_HOME directory. From: Aaron Kimball <aaron@cloudera.com> git-svn-id: https://svn.apache.org/repos/asf/incubator/sqoop/trunk@1149946 13f79535-47bb-0310-9956-ffa450edef68
52 lines
2.2 KiB
XML
52 lines
2.2 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}-test">
|
|
<license name="Apache 2.0"/>
|
|
<ivyauthor name="Sqoop Team" url="http://github.com/cloudera/sqoop" />
|
|
<description>
|
|
Sqoop test library
|
|
</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"/>
|
|
<dependency org="com.cloudera.hadoop" name="hadoop-test"
|
|
rev="${hadoop-core.cloudera.version}" conf="common->default"/>
|
|
<dependency org="junit" name="junit" rev="${junit.version}"
|
|
conf="common->default"/>
|
|
<dependency org="hsqldb" name="hsqldb" rev="${hsqldb.version}"
|
|
conf="common->default"/>
|
|
</dependencies>
|
|
</ivy-module>
|