hadoop-core.pom
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:8k
源码类别:

网格计算

开发平台:

Java

  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-core</artifactId>
  21.   <packaging>jar</packaging>
  22.   <version>${hadoop.version}</version>
  23.   <description>
  24.     Hadoop is the distributed computing framework of Apache; hadoop-core contains
  25.     the filesystem, job tracker and map/reduce modules
  26.   </description>
  27.   <licenses>
  28.     <license>
  29.       <name>Apache License, Version 2.0</name>
  30.       <url>http://apache.org/licenses/LICENSE-2.0</url>
  31.     </license>
  32.   </licenses>
  33.   <dependencies>
  34.     <!-- always include commons-logging and log4J -->
  35.     <dependency>
  36.       <groupId>commons-logging</groupId>
  37.       <artifactId>commons-logging</artifactId>
  38.       <version>${commons-logging.version}</version>
  39.       <exclusions>
  40.         <exclusion>
  41.           <groupId>avalon-framework</groupId>
  42.           <artifactId>avalon-framework</artifactId>
  43.         </exclusion>
  44.         <exclusion>
  45.           <groupId>javax.servlet</groupId>
  46.           <artifactId>servlet-api</artifactId>
  47.         </exclusion>
  48.         <exclusion>
  49.           <groupId>junit</groupId>
  50.           <artifactId>junit</artifactId>
  51.         </exclusion>
  52.         <exclusion>
  53.           <groupId>logkit</groupId>
  54.           <artifactId>logkit</artifactId>
  55.         </exclusion>
  56.         <exclusion>
  57.           <groupId>log4j</groupId>
  58.           <artifactId>log4j</artifactId>
  59.         </exclusion>
  60.       </exclusions>
  61.     </dependency>
  62.     <dependency>
  63.       <groupId>log4j</groupId>
  64.       <artifactId>log4j</artifactId>
  65.       <version>${log4j.version}</version>
  66.       <scope>optional</scope>
  67.       <exclusions>
  68.         <exclusion>
  69.           <groupId>javax.mail</groupId>
  70.           <artifactId>mail</artifactId>
  71.         </exclusion>
  72.         <exclusion>
  73.           <groupId>javax.jms</groupId>
  74.           <artifactId>jms</artifactId>
  75.         </exclusion>
  76.         <exclusion>
  77.           <groupId>com.sun.jdmk</groupId>
  78.           <artifactId>jmxtools</artifactId>
  79.         </exclusion>
  80.         <exclusion>
  81.           <groupId>com.sun.jmx</groupId>
  82.           <artifactId>jmxri</artifactId>
  83.         </exclusion>
  84.       </exclusions>
  85.     </dependency>
  86.     <!--SLF4J is a JAR-based dependency; this POM binds it to log4J-->
  87.     <dependency>
  88.       <groupId>org.slf4j</groupId>
  89.       <artifactId>slf4j-api</artifactId>
  90.       <version>${slf4j-api.version}</version>
  91.       <scope>optional</scope>
  92.     </dependency>
  93.     <dependency>
  94.       <groupId>org.slf4j</groupId>
  95.       <artifactId>slf4j-log4j12</artifactId>
  96.       <version>${slf4j-log4j12.version}</version>
  97.       <scope>optional</scope>
  98.       <exclusions>
  99.         <exclusion>
  100.           <groupId>log4j</groupId>
  101.           <artifactId>log4j</artifactId>
  102.         </exclusion>
  103.       </exclusions>
  104.     </dependency>
  105.     <!--Httpclient and its components are optional-->
  106.     <dependency>
  107.       <groupId>commons-httpclient</groupId>
  108.       <artifactId>commons-httpclient</artifactId>
  109.       <version>3.1</version>
  110.       <scope>optional</scope>
  111.       <exclusions>
  112.         <exclusion>
  113.           <groupId>commons-logging</groupId>
  114.           <artifactId>commons-logging</artifactId>
  115.         </exclusion>
  116.         <exclusion>
  117.           <groupId>junit</groupId>
  118.           <artifactId>junit</artifactId>
  119.         </exclusion>
  120.       </exclusions>
  121.     </dependency>
  122.     <dependency>
  123.       <groupId>commons-codec</groupId>
  124.       <artifactId>commons-codec</artifactId>
  125.       <version>1.3</version>
  126.       <scope>optional</scope>
  127.     </dependency>
  128.     <!--CLI is needed to scan the command line, but only the 1.0 branch is released -->
  129.     <dependency>
  130.       <groupId>commons-cli</groupId>
  131.       <artifactId>commons-cli</artifactId>
  132.       <version>2.0-20070823</version>
  133.       <scope>optional</scope>
  134.     </dependency>
  135.    <!-- this is used for the ftp:// filesystem-->
  136.     <dependency>
  137.       <groupId>commons-net</groupId>
  138.       <artifactId>commons-net</artifactId>
  139.       <version>1.4.1</version>
  140.       <scope>optional</scope>
  141.     </dependency>
  142.     <!-- Jetty is used to serve up the application. It is marked as optional because
  143.     clients do not need it. All server-side deployments will need
  144.      all of these files.-->
  145.     <dependency>
  146.       <groupId>javax.servlet</groupId>
  147.       <artifactId>servlet-api</artifactId>
  148.       <version>${servlet-api.version}</version>
  149.       <scope>optional</scope>
  150.     </dependency>
  151.     <dependency>
  152.       <groupId>jetty</groupId>
  153.       <artifactId>org.mortbay.jetty</artifactId>
  154.       <version>${jetty.version}</version>
  155.       <scope>optional</scope>
  156.     </dependency>
  157.     <!--JSP support -->
  158.     <dependency>
  159.       <groupId>org.mortbay.jetty</groupId>
  160.       <artifactId>jsp-2.1</artifactId>
  161.       <version>${jetty.version}</version>
  162.       <scope>optional</scope>
  163.     </dependency>
  164.     <dependency>
  165.       <groupId>org.mortbay.jetty</groupId>
  166.       <artifactId>jsp-api-2.1</artifactId>
  167.       <version>${jetty.version}</version>
  168.       <scope>optional</scope>
  169.     </dependency>
  170.     <dependency>
  171.       <groupId>commons-el</groupId>
  172.       <artifactId>commons-el</artifactId>
  173.       <version>${commons-el.version}</version>
  174.       <scope>optional</scope>
  175.     </dependency>
  176.     <!--JSPC assistance-->
  177.     <dependency>
  178.       <groupId>org.eclipse.jdt</groupId>
  179.       <artifactId>core</artifactId>
  180.       <version>${core.version}</version>
  181.       <scope>optional</scope>
  182.     </dependency>
  183.     <dependency>
  184.       <groupId>org.apache.ant</groupId>
  185.       <artifactId>ant</artifactId>
  186.       <version>${apacheant.version}</version>
  187.       <scope>optional</scope>
  188.     </dependency>
  189.     <!-- JetS3t is a client library for S3.
  190.     -It is only needed if you want to work with S3 filesystems
  191.     -It pulls in commons-logging 1.1.1 and does not exclude all the cruft that comes with it.
  192.     By excluding it we stay in control of versions and dependencies
  193.     -->
  194.     <dependency>
  195.       <groupId>net.java.dev.jets3t</groupId>
  196.       <artifactId>jets3t</artifactId>
  197.       <version>${jets3t.version}</version>
  198.       <scope>optional</scope>
  199.       <exclusions>
  200.         <exclusion>
  201.           <groupId>commons-logging</groupId>
  202.           <artifactId>commons-logging</artifactId>
  203.         </exclusion>
  204.         <exclusion>
  205.           <groupId>junit</groupId>
  206.           <artifactId>junit</artifactId>
  207.         </exclusion>
  208.       </exclusions>
  209.     </dependency>
  210.     <!--Kosmos filesystem
  211.     http://kosmosfs.sourceforge.net/
  212.     This is not in the central repository
  213.     -->
  214.     <!--
  215.         <dependency>
  216.           <groupId>org.kosmix</groupId>
  217.           <artifactId>kfs</artifactId>
  218.           <version>0.1</version>
  219.           <scope>optional</scope>
  220.         </dependency>
  221.     -->
  222.     <!--
  223.      http://xmlenc.sourceforge.net/
  224.      "The xmlenc library is a fast stream-based XML output library for Java."
  225.     -->
  226.     <dependency>
  227.       <groupId>xmlenc</groupId>
  228.       <artifactId>xmlenc</artifactId>
  229.       <version>0.52</version>
  230.       <scope>optional</scope>
  231.     </dependency>
  232.   </dependencies>
  233. </project>