- 版本
- Maven 3.2 要求 JDK 1.6 或以上版本, 而 Maven 3.0/3.1 需要 JDK 1.5 或以上
- 环境变量
- JAVA_HOME、M2_HOME(MAVEN_HOME部分应用要求配置MAVEN_HOME同样指向maven安装路径)、path(2个bin)
- 代理
- {M2_HOME}/conf/settings.xml配置proxy,不用重启,命令启动会重新加载吊起
- 本地资源库
- {M2_HOME}/conf/settings.xml配置localRepository,默认{username}/.m2
- 中央资源库
- http://search.maven.org/,Maven命令自动获取库文件http://repo1.maven.org/maven/
- 远程资源库文件
- pom.xml的repository标签
-
<repositories> <repository> <id>java.net</id> <url>https://maven.java.net/content/repositories/public/</url> </repository> </repositories>
-
- 安装到本地
-
mvn install:install-file -Dfile=带路径&版本.jar -DgroupId=groupId -DartifactId=artifactId -Dversion={version} -Dpackaging=jar
-
- pom.xml的repository标签
-
pom.xml依赖jar
-
<dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies>
-
-
从Maven模板创建项目
-
命令行到要创建项目的目录:DarchetypeArtifactId指定模板名
-
mvn archetype:generate -DgroupId=包,例如com.stu -DartifactId={project-name}-DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false
-
-
模板
-
maven-archetype-quickstart 快速开始
-
maven-archetype-webapp Web项目
-
-
-
JDK版本指定
-
<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>
-
-
打包mvn package 运行:java -cp target/**.jar com.xxx.XXX(执行类)
-
mvn eclipse:eclipse -Dwtpversion=2.0 生成Eclipse需要的项目文件 -Dwtpversion=2.0添加了会生成web项目,否则Java项目。若想默认是web需要在对应的mvn项目的pom.xml中增加wtpversion
-
<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>
-
Maven常用知识点
最新推荐文章于 2024-11-05 15:26:40 发布