码迷,mamicode.com
首页 > 其他好文 > 详细

maven快速上手

时间:2017-08-02 19:06:28      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:通过   本地仓库   cal   配置系统   images   blog   host   work   快速   

1、maven安装

     首先下载apache-maven-3.3.3-bin.zip(版本可以自己根据自己想要的下载)。

     解压后如下:

  技术分享

  接下来配置系统环境变量:

  技术分享 

 技术分享

    到此,maven安装好了,接下来输入 mvn -v查看maven是否安装成功。

  技术分享 

2、settings.xml文件与实际项目中pom.xml文件配置的关联讲解

   在settings.xml文件中

   //这是本地仓库路径,管理本地的jar包

  <localRepository>D:\SPOC\repository</localRepository>  

     //这是访问私服的账户配置 

  <servers>
    <server>
      <id>nexus-releases</id>
      <username>deployment</username>
      <password>deployment123</password>
    </server>
    <server>
      <id>nexus-snapshots</id>
      <username>deployment</username>
      <password>deployment123</password>
    </server>
  </servers>

  

<profiles>
<profile>
<id>lifeng</id>

<activation>
<activeByDefault>false</activeByDefault>
<!-- 我这里采用的是JDK1.8,请根据自己本地的版本配置相应的参数 -->
<jdk>1.8</jdk>
</activation>

<repositories>
<!--私有库地址-->
<repository>
<id>nexus</id>
<url>http://localhost:8081/nexus/content/groups/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<!--插件库地址-->
<pluginRepository>
<id>nexus</id>
<url>http://localhost:8081/nexus/content/groups/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>

</pluginRepository>
</pluginRepositories>
</profile>
</profiles>

 

 3、接下来主要说一下项目中pom.xml文件的配置:

  <distributionManagement>

    <repository>
      <id>releases</id>
      <name>Nexus Release Repository</name>
      <url>http://localhost:8081/nexus/content/repositories/releases/</url>
    </repository>
    <snapshotRepository>
    <id>snapshots</id>
    <name>Nexus Snapshot Repository</name>
    <url>http://localhost:8081/nexus/content/repositories/snapshots/</url>
    </snapshotRepository>
  </distributionManagement>

  此配置中的两个id标签名称需要与settings.xml文件中<servers>标签中的两个id标签名称对应一致,因为这是对应登录私服的账户,否则在把maven工程打成jar包的过程中会失败。并且通过此配置可以把工程打成jar包后对应的发布到私服中。

 

4、maven工程打jar包

  右键工程---->run as ----> run configurations

  然后选择 maven build, 右键-->新建  

 技术分享 

 点击Beswse Workspace选择需要打包的maven工程,  在Golas 中输入  clean install deploy ,

    然后点击apply应用,最后点击run进行运行。成功后就会把此jar包打到私服中去。

 

maven快速上手

标签:通过   本地仓库   cal   配置系统   images   blog   host   work   快速   

原文地址:http://www.cnblogs.com/liysoftware/p/7274868.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!