Maven常用知识点

  1. 版本
    1. Maven 3.2 要求 JDK 1.6 或以上版本, 而 Maven 3.0/3.1 需要 JDK 1.5 或以上
  2. 环境变量
    1. JAVA_HOME、M2_HOME(MAVEN_HOME部分应用要求配置MAVEN_HOME同样指向maven安装路径)、path(2个bin)
  3. 代理
    1. {M2_HOME}/conf/settings.xml配置proxy,不用重启,命令启动会重新加载吊起
  4. 本地资源库
    1. {M2_HOME}/conf/settings.xml配置localRepository,默认{username}/.m2
  5. 中央资源库
    1. http://search.maven.org/,Maven命令自动获取库文件http://repo1.maven.org/maven/
  6. 远程资源库文件
    1. pom.xml的repository标签
      1. <repositories>
        	<repository>
        	    <id>java.net</id>
        	    <url>https://maven.java.net/content/repositories/public/</url>
            </repository>
        </repositories>
    2. 安装到本地
      1. mvn install:install-file -Dfile=带路径&版本.jar -DgroupId=groupId -DartifactId=artifactId -Dversion={version} -Dpackaging=jar
        
        

         

  7. pom.xml依赖jar

    1. <dependencies>
      	<dependency>
      		<groupId>junit</groupId>
      		<artifactId>junit</artifactId>
      		<version>4.11</version>
      		<scope>test</scope>
      	</dependency>
      </dependencies>

       

  8. 从Maven模板创建项目

    1. 命令行到要创建项目的目录:DarchetypeArtifactId指定模板名

      1. mvn archetype:generate -DgroupId=包,例如com.stu -DartifactId={project-name}-DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

         

    2. 模板

      1. maven-archetype-quickstart  快速开始

      2. maven-archetype-webapp  Web项目

  9. JDK版本指定

    1. <build>
        <plugins>
      	<plugin>
      		<groupId>org.apache.maven.plugins</groupId>
      		<artifactId>maven-compiler-plugin</artifactId>
      		<version>2.3.2</version>
      		<configuration>
      			<source>1.6</source>
      			<target>1.6</target>
      		</configuration>
      	</plugin>
        </plugins>
      </build>

       

  10. 打包mvn package 运行:java -cp target/**.jar com.xxx.XXX(执行类)

  11. mvn eclipse:eclipse -Dwtpversion=2.0 生成Eclipse需要的项目文件  -Dwtpversion=2.0添加了会生成web项目,否则Java项目。若想默认是web需要在对应的mvn项目的pom.xml中增加wtpversion

    1. <plugins>
          <!-- Eclipse project -->
          <plugin>
              <groupId>org.apache.maven.plugins</groupId>
      		<artifactId>maven-eclipse-plugin</artifactId>
      		<version>2.9</version>
      		<configuration>
      	        <!-- Always download and attach dependencies source code -->
      			<downloadSources>true</downloadSources>
      			<downloadJavadocs>false</downloadJavadocs>
      			<!-- Avoid type mvn eclipse:eclipse -Dwtpversion=2.0 -->
      			<wtpversion>2.0</wtpversion>
      		</configuration>
        </plugin>
      </plugins>

       

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值