ivy.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?xml version="1.0" ?>
  2. <!--
  3. Licensed to Cloudera, Inc. under one
  4. or more contributor license agreements. See the NOTICE file
  5. distributed with this work for additional information
  6. regarding copyright ownership. Cloudera, Inc. licenses this file
  7. to you under the Apache License, Version 2.0 (the
  8. "License"); you may not use this file except in compliance
  9. with the License. You may obtain a copy of the License at
  10. http://www.apache.org/licenses/LICENSE-2.0
  11. Unless required by applicable law or agreed to in writing, software
  12. distributed under the License is distributed on an "AS IS" BASIS,
  13. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. See the License for the specific language governing permissions and
  15. limitations under the License.
  16. -->
  17. <ivy-module version="1.0">
  18. <info organisation="org.apache.hadoop" module="${ant.project.name}">
  19. <license name="Apache 2.0"/>
  20. <ivyauthor name="Apache Hadoop Team" url="http://hadoop.apache.org"/>
  21. <description>
  22. Apache Hadoop
  23. </description>
  24. </info>
  25. <configurations defaultconfmapping="default">
  26. <!--these match the Maven configurations-->
  27. <conf name="default" extends="master,runtime"/>
  28. <conf name="master" description="contains the artifact but no dependencies"/>
  29. <conf name="runtime" description="runtime but not the artifact" />
  30. <conf name="common" visibility="private"
  31. extends="runtime"
  32. description="artifacts needed to compile/test the application"/>
  33. <conf name="test" visibility="private" extends="runtime"/>
  34. </configurations>
  35. <publications>
  36. <!--get the artifact from our module name-->
  37. <artifact conf="master"/>
  38. </publications>
  39. <dependencies>
  40. <dependency org="commons-logging"
  41. name="commons-logging"
  42. rev="${commons-logging.version}"
  43. conf="common->default"/>
  44. <dependency org="log4j"
  45. name="log4j"
  46. rev="${log4j.version}"
  47. conf="common->master"/>
  48. <dependency org="org.mortbay.jetty"
  49. name="jetty-util"
  50. rev="${jetty-util.version}"
  51. conf="common->master"/>
  52. <dependency org="org.mortbay.jetty"
  53. name="jetty"
  54. rev="${jetty.version}"
  55. conf="common->master"/>
  56. <dependency org="junit"
  57. name="junit"
  58. rev="${junit.version}"
  59. conf="common->default" />
  60. <dependency org="tomcat"
  61. name="servlet"
  62. rev="${servlet.version}"
  63. conf="common->default"/>
  64. </dependencies>
  65. </ivy-module>