欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

详解Maven环境的搭建与idea配置

时间:2020-10-02 10:19:40|栏目:JAVA代码|点击:

本文主要介绍了Maven环境的搭建与idea配置,分享给大家,具体如下:

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

<localRepository>D:/workspace/maven/stone</localRepository> 

2.1如何配置远程仓库(私服): (nexus-2.0.4-1-bundle)

<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还可以配置仓库的镜像下载

<mirrors> 
<mirror><!--配置镜像--> 
  <id>nexus</id> 
  <mirrorOf>*</mirrorOf> 
  <url>http://127.0.0.1/nexus/content/groups/public</url> 
</mirror> 
</mirrors> 

3、pom.xml文件配置依赖

<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自动导包



上一篇:java 实现截取字符串并按字节分别输出实例代码

栏    目:JAVA代码

下一篇:java语言实现权重随机算法完整实例

本文标题:详解Maven环境的搭建与idea配置

本文地址:http://www.codeinn.net/misctech/5913.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有