打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
Maven环境的搭建与idea配置
userphoto

2017.02.19

关注
Maven 下载: http://maven.apache.org/download.cgi
Maven 中央仓库地址:http://search.maven.org
配置maven环境变量
M2_HOME:D:\workspace\maven\apache-maven-3.0.5
Path:;%M2_HOME%/bin;
检查是否成功,打开CMD:
Mvn -v
mvn install 会将项目生成的构件安装到本地Maven仓库
mvn deploy 用来将项目生成的构件分发到远程Maven仓库
D:\>mvn archetype:generate:在D:盘构建maven标准项目目录结构
2、settings.xml文件配置
2.0修改本地仓库位置
M2_home目录下 conf/settings.xml
[html] view plain copy
<localRepository>D:/workspace/maven/stone</localRepository>
2.1如何配置远程仓库(私服): (nexus-2.0.4-1-bundle)
[html] view plain copy
<profiles>
<profile>
<id>nexus</id>
<repositories><!--配置远程仓库-->
<repository>
<id>nexus</id>
<name>Central Repository</name>
<url>http://127.0.0.1/nexus/content/groups/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled><!---->
</snapshots>
</repository>
</repositories>
<pluginRepositories><!--配置Maven从什么地方下载插件构件-->
<pluginRepository>
<id>nexus</id>
<name>Central Repository</name>
<url>http://127.0.0.1/nexus/content/groups/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles><!--激活 远程仓库-->
<activeProfile>nexus</activeProfile>
</activeProfiles>
-------------------------------------------------------------------------------------------------
2.2还可以配置仓库的镜像下载
[html] view plain copy
<mirrors>
<mirror><!--配置镜像-->
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<url>http://127.0.0.1/nexus/content/groups/public</url>
</mirror>
</mirrors>
3、pom.xml文件配置依赖
[html] view plain copy
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>xu.feifei</groupId>
<artifactId>feifei</artifactId>
<packaging>war</packaging>
<version>1.0</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20090211</version>
</dependency>
</dependencies>
<build>
<finalName>feifei</finalName>
</build>
</project>
二、IDEA的搭建Maven相关配置
.
maven项目的包结构
设置maven自动导包
本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
Maven不能下载SNAPSHOT包但是能下载RELEASE包的解决办法
Maven教程!学Java,最通俗易懂的Java免费教程
Maven环境下搭建Nexus本地仓库
Maven+Nexus环境实现Java打包环境部署
maven setting.xml配置说明
maven仓库配置
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服