hadoop-hdfs.pom 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <!--
  5. Licensed to the Apache Software Foundation (ASF) under one or more
  6. contributor license agreements. See the NOTICE file distributed with
  7. this work for additional information regarding copyright ownership.
  8. The ASF licenses this file to You under the Apache License, Version 2.0
  9. (the "License"); you may not use this file except in compliance with
  10. the License. You may obtain a copy of the License at
  11. http://www.apache.org/licenses/LICENSE-2.0
  12. Unless required by applicable law or agreed to in writing, software
  13. distributed under the License is distributed on an "AS IS" BASIS,
  14. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. See the License for the specific language governing permissions and
  16. limitations under the License.
  17. -->
  18. <modelVersion>4.0.0</modelVersion>
  19. <groupId>org.apache.hadoop</groupId>
  20. <artifactId>hadoop-hdfs</artifactId>
  21. <packaging>jar</packaging>
  22. <version>${hadoop.version}</version>
  23. <description>
  24. Apache Hadoop Core is a software platform that lets one easily write and run applications
  25. that process vast amounts of data.
  26. hadoop-hdfs contains the server-side and client-side code to work with the Hadoop Distributed File System
  27. </description>
  28. <licenses>
  29. <license>
  30. <name>Apache License, Version 2.0</name>
  31. <url>http://apache.org/licenses/LICENSE-2.0</url>
  32. </license>
  33. </licenses>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.apache.hadoop</groupId>
  37. <artifactId>hadoop-common</artifactId>
  38. <version>${hadoop.version}</version>
  39. </dependency>
  40. </dependencies>
  41. </project>