zoukankan      html  css  js  c++  java
  • pom.xml 文件详解

    今天重新配置了hadoop和hbase

    学习了maven并配置了IDEA的maven

    pom.xml详解:

    https://blog.csdn.net/jk418756/article/details/87917776

    完整的:

     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
     4                       http://maven.apache.org/maven-v4_0_0.xsd">
     5   <modelVersion>4.0.0</modelVersion>
     6   <!– The Basics –>
     7   <groupId></groupId>
     8   <artifactId></artifactId>
     9   <version></version>
    10   <packaging></packaging>
    11   <dependencies></dependencies>
    12   <parent></parent>
    13   <dependencyManagement></dependencyManagement>
    14   <modules></modules>
    15   <properties></properties>
    16   <!– Build Settings –>
    17   <build></build>
    18   <reporting></reporting>
    19   <!– More Project Information –>
    20   <name></name>
    21   <description></description>
    22   <url></url>
    23   <inceptionYear></inceptionYear>
    24   <licenses></licenses>
    25   <organization></organization>
    26   <developers></developers>
    27   <contributors></contributors>
    28   <!– Environment Settings –>
    29   <issueManagement></issueManagement>
    30   <ciManagement></ciManagement>
    31   <mailingLists></mailingLists>
    32   <scm></scm>
    33   <prerequisites></prerequisites>
    34   <repositories></repositories>
    35   <pluginRepositories></pluginRepositories>
    36   <distributionManagement></distributionManagement>
    37   <profiles></profiles>
    38 </project>

     

     

     

     

  • 相关阅读:
    Java基础 Day02(个人复习整理)
    Java基础 Day01(个人复习整理)
    linux-rpm
    linux常用命令
    rpm构建流程学习总结
    git相关
    sql相关
    ssh打通
    element ui FORM表单
    python threading多线程
  • 原文地址:https://www.cnblogs.com/rainbow-1/p/15310132.html
Copyright © 2011-2022 走看看