午夜视频在线网站,日韩视频精品在线,中文字幕精品一区二区三区在线,在线播放精品,1024你懂我懂的旧版人,欧美日韩一级黄色片,一区二区三区在线观看视频

分享

Maven環(huán)境的搭建與idea配置

 yespon 2017-02-19

Maven環(huán)境的搭建與idea配置

Maven 下載: http://maven./download.cgi

Maven 中央倉庫地址:http://search. 

配置maven環(huán)境變量

M2_HOME:D:\workspace\maven\apache-maven-3.0.5

Path:;%M2_HOME%/bin;

檢查是否成功,打開CMD

Mvn -v

mvn install 會將項目生成的構(gòu)件安裝到本地Maven倉庫 

mvn deploy 用來將項目生成的構(gòu)件分發(fā)到遠(yuǎn)程Maven倉庫 

D:\>mvn archetype:generate:在D:盤構(gòu)建maven標(biāo)準(zhǔn)項目目錄結(jié)構(gòu)

2、settings.xml文件配置

2.0修改本地倉庫位置

M2_home目錄下 conf/settings.xml

[html] view plain copy
  1. <localRepository>D:/workspace/maven/stone</localRepository>  


2.1如何配置遠(yuǎn)程倉庫(私服): (nexus-2.0.4-1-bundle) 

[html] view plain copy
  1. <profiles>  
  2.     <profile>  
  3.         <id>nexus</id>  
  4.         <repositories><!--配置遠(yuǎn)程倉庫-->  
  5.             <repository>  
  6.                 <id>nexus</id>  
  7.                 <name>Central Repository</name>  
  8.                 <url>http://127.0.0.1/nexus/content/groups/public</url>  
  9.                 <releases>  
  10.                     <enabled>true</enabled>  
  11.                 </releases>  
  12.                 <snapshots>  
  13.                     <enabled>false</enabled><!---->  
  14.                 </snapshots>  
  15.             </repository>  
  16.         </repositories>  
  17.         <pluginRepositories><!--配置Maven從什么地方下載插件構(gòu)件-->  
  18.             <pluginRepository>  
  19.                 <id>nexus</id>  
  20.                 <name>Central Repository</name>  
  21.                 <url>http://127.0.0.1/nexus/content/groups/public</url>  
  22.                 <releases>  
  23.                     <enabled>true</enabled>  
  24.                 </releases>  
  25.                 <snapshots>  
  26.                     <enabled>false</enabled>  
  27.                 </snapshots>  
  28.             </pluginRepository>  
  29.         </pluginRepositories>  
  30.     </profile>  
  31. </profiles>  
  32.   
  33. <activeProfiles><!--激活 遠(yuǎn)程倉庫-->  
  34.         <activeProfile>nexus</activeProfile>  
  35. </activeProfiles>  


-------------------------------------------------------------------------------------------------

2.2還可以配置倉庫的鏡像下載

[html] view plain copy
  1. <mirrors>  
  2. <mirror><!--配置鏡像-->  
  3.     <id>nexus</id>  
  4.     <mirrorOf>*</mirrorOf>  
  5.     <url>http://127.0.0.1/nexus/content/groups/public</url>  
  6. </mirror>  
  7. </mirrors>  

3、pom.xml文件配置依賴

[html] view plain copy
  1. <project xmlns="http://maven./POM/4.0.0" xmlns:xsi="http://www./2001/XMLSchema-instance"  
  2.          xsi:schemaLocation="http://maven./POM/4.0.0 http://maven./maven-v4_0_0.xsd">  
  3.     <modelVersion>4.0.0</modelVersion>  
  4.     <groupId>xu.feifei</groupId>  
  5.     <artifactId>feifei</artifactId>  
  6.     <packaging>war</packaging>  
  7.     <version>1.0</version>  
  8.   
  9.     <dependencies>  
  10.   
  11.         <dependency>  
  12.             <groupId>junit</groupId>  
  13.             <artifactId>junit</artifactId>  
  14.             <version>3.8.1</version>  
  15.             <scope>test</scope>  
  16.         </dependency>  
  17.         <dependency>  
  18.             <groupId>org.json</groupId>  
  19.             <artifactId>json</artifactId>  
  20.             <version>20090211</version>  
  21.         </dependency>  
  22.   
  23.     </dependencies>  
  24.   
  25.     <build>  
  26.         <finalName>feifei</finalName>  
  27.     </build>  
  28.       
  29. </project>  

二、IDEA的搭建Maven相關(guān)配置

.


maven項目的包結(jié)構(gòu)


設(shè)置maven自動導(dǎo)包






    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多