当前位置: > Linux服务器 > 环境配置 >

Linux 搭建 maven

时间:2014-11-02 19:53来源:linux.it.net.cn 作者:it

Maven, 是基于项目对象模型(Project Object Model, POM),通过一小段描述信息来管理项目的构建,报告,文档的软件项目管理工具。


目前,绝大多数开发人员都把 Ant 当作 Java 编程项目的标准构建工具。但是,Ant 的项目管理工具(作为 make的替代工具)不能满足绝大多数开发人员的需要。通过检查 Ant 构建文件,很难发现项目的相关性信息和其它元信息(如开发人员/拥有者、版本或站点主页)。

Maven 除了以程序构建能力为特色之外,还提供 Ant 所缺少的高级项目管理工具。由于 Maven 的缺省构建规则有较高的可重用性,所以常常用两三行 Maven 构建脚本就可以构建简单的项目,而使用 Ant 则需要十几行。事实上,由于 Maven 的面向项目的方法,许多 Apache Jakarta 项目现在使用 Maven,而且公司项目采用 Maven 的比例在持续增长。

Maven这个单词来自于意第绪语,意为知识的积累,最早在Jakata Turbine项目中它开始被用来试图简化构建过程。当时有很多项目,它们的Ant build文件仅有细微的差别,而JAR文件都由CVS来维护。于是Maven创始者开始了Maven这个项目,该项目的清晰定义包括,一种很方便的发布项目信息的方式,以及一种在多个项目中共享JAR的方式。

 

Maven 和 Ant 有什么不同呢?

Ant 为 Java 技术开发项目提供跨平台构建任务

Maven 本身描述项目的高级方面,它从 Ant 借用了绝大多数构建任务

 

Maven

Ant

标准构建文件

project.xml 和 maven.xml

build.xml

特性处理顺序

${maven.home}/bin/driver.properties

${project.home}/project.properties

${project.home}/build.properties

${user.home}/build.properties

通过 -D 命令行选项定义的系统特性,最后一个定义起决定作用。

通过 -D 命令行选项定义的系统特性

由 <property> 任务装入的特性

第一个定义最先被处理。

构建规则

构建规则更为动态(类似于编程语言);它们是基于 Jelly 的可执行 XML。

构建规则或多或少是静态的,除非使用 <script> 任务。

扩展语言

插件是用 Jelly(XML)编写的。

插件是用 Java 语言编写的。

构建规则可扩展性

通过定义 <preGoal> 和 <postGoal> 使构建 goal 可扩展。

构建规则不易扩展;可通过使用 <script> 任务模拟 <preGoal> 和 <postGoal> 所起的作用。

 

由上比较可知,Maven 和 Ant 代表两个差异很大的工具

 

1, 下载

官方下载地址:  maven_download, 最新版 apache-maven-3.0.5-bin.tar.gz

官方地址:  maven

 

2, 解压

tar   zxvf   apache-maven-3.0.5-bin.tar.gz       (例如安装目录为: /home/homer/Apache-maven/apache-maven-3.0.5)

 

3, 安装

1) 编辑 /etc/profile

sudo   vi   /etc/profile

 

2) 配置

配置maven安装目录: 

export MAVEN_HOME=/home/homer/Apache-maven/apache-maven-3.0.5                  // 安装目录      

export PATH=${MAVEN_HOME}/bin:${PATH}

 

如下图:

 

3) 生效

source   /etc/profile                // 使上面配置生效

 

4, 验证

命令行输入:  mvn  -v

 

 

如上图, 显示maven版本信息,表示安装成功!

 

5、setting.xml 配置文件

setting.xml 配置文件,在安装目录(/opt/maven-3.0.5/conf/settings.xml)和本地目录(/home/homer/.m2/settings.xml)都有,区别:

1) 安装目录(conf/settings.xml),是对本机器上所有用户有效(同一台机器可以有多个用户,均有效),全局设置

2) 当前目录(.m2/settings.xml),仅对当前用户有效,局部设置

maven还有一个配置文件pom.xml,是在java项目的根目录下,仅对当前项目有效,局部设置

 

setting.xml 配置文件示例:

 

  1. <?xml version="1.0" encoding="UTF-8"?>  
  2.   
  3. <!--  
  4. Licensed to the Apache Software Foundation (ASF) under one  
  5. or more contributor license agreements.  See the NOTICE file  
  6. distributed with this work for additional information  
  7. regarding copyright ownership.  The ASF licenses this file  
  8. to you under the Apache License, Version 2.0 (the  
  9. "License"); you may not use this file except in compliance  
  10. with the License.  You may obtain a copy of the License at  
  11.   
  12.     http://www.apache.org/licenses/LICENSE-2.0  
  13.   
  14. Unless required by applicable law or agreed to in writing,  
  15. software distributed under the License is distributed on an  
  16. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY  
  17. KIND, either express or implied.  See the License for the  
  18. specific language governing permissions and limitations  
  19. under the License.  
  20. -->  
  21.   
  22. <!--  
  23.  | This is the configuration file for Maven. It can be specified at two levels:  
  24.  |  
  25.  |  1. User Level. This settings.xml file provides configuration for a single user,   
  26.  |                 and is normally provided in ${user.home}/.m2/settings.xml.  
  27.  |  
  28.  |                 NOTE: This location can be overridden with the CLI option:  
  29.  |  
  30.  |                 -s /path/to/user/settings.xml  
  31.  |  
  32.  |  2. Global Level. This settings.xml file provides configuration for all Maven  
  33.  |                 users on a machine (assuming they're all using the same Maven  
  34.  |                 installation). It's normally provided in   
  35.  |                 ${maven.home}/conf/settings.xml.  
  36.  |  
  37.  |                 NOTE: This location can be overridden with the CLI option:  
  38.  |  
  39.  |                 -gs /path/to/global/settings.xml  
  40.  |  
  41.  | The sections in this sample file are intended to give you a running start at  
  42.  | getting the most out of your Maven installation. Where appropriate, the default  
  43.  | values (values used when the setting is not specified) are provided.  
  44.  |  
  45.  |-->  
  46. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"   
  47.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   
  48.     xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">  
  49.     <!-- localRepository  
  50.    | The path to the local repository maven will use to store artifacts.  
  51.    |  
  52.    | Default: ~/.m2/repository  
  53.   <localRepository>/path/to/local/repo</localRepository>  
  54.   -->  
  55.   <localRepository>~/.m2/repository</localRepository>  
  56.   
  57.   <!-- interactiveMode  
  58.    | This will determine whether maven prompts you when it needs input. If set to false,  
  59.    | maven will use a sensible default value, perhaps based on some other setting, for  
  60.    | the parameter in question.  
  61.    |  
  62.    | Default: true  
  63.   <interactiveMode>true</interactiveMode>  
  64.   -->  
  65.   
  66.   <!-- offline  
  67.    | Determines whether maven should attempt to connect to the network when executing a build.  
  68.    | This will have an effect on artifact downloads, artifact deployment, and others.  
  69.    |  
  70.    | Default: false  
  71.   <offline>false</offline>  
  72.   -->  
  73.   
  74.   <!-- pluginGroups  
  75.    | This is a list of additional group identifiers that will be searched when resolving plugins by their prefix, i.e.  
  76.    | when invoking a command line like "mvn prefix:goal". Maven will automatically add the group identifiers  
  77.    | "org.apache.maven.plugins" and "org.codehaus.mojo" if these are not already contained in the list.  
  78.    |-->  
  79.   <pluginGroups>  
  80.       <!-- pluginGroup  
  81.      | Specifies a further group identifier to use for plugin lookup.  
  82.     <pluginGroup>com.your.plugins</pluginGroup>  
  83.     -->  
  84.   </pluginGroups>  
  85.   
  86.   <!-- proxies  
  87.    | This is a list of proxies which can be used on this machine to connect to the network.  
  88.    | Unless otherwise specified (by system property or command-line switch), the first proxy  
  89.    | specification in this list marked as active will be used.  
  90.    |-->  
  91.   <proxies>  
  92.       <!-- proxy  
  93.      | Specification for one proxy, to be used in connecting to the network.  
  94.      |  
  95.     <proxy>  
  96.       <id>optional</id>  
  97.       <active>true</active>  
  98.       <protocol>http</protocol>  
  99.       <username>proxyuser</username>  
  100.       <password>proxypass</password>  
  101.       <host>proxy.host.net</host>  
  102.       <port>80</port>  
  103.       <nonProxyHosts>local.net|some.host.com</nonProxyHosts>  
  104.     </proxy>  
  105.     -->  
  106.   </proxies>  
  107.   
  108.   <!-- servers  
  109.    | This is a list of authentication profiles, keyed by the server-id used within the system.  
  110.    | Authentication profiles can be used whenever maven must make a connection to a remote server.  
  111.    |-->  
  112.   <servers>  
  113.       <!-- server  
  114.      | Specifies the authentication information to use when connecting to a particular server, identified by  
  115.      | a unique name within the system (referred to by the 'id' attribute below).  
  116.      |   
  117.      | NOTE: You should either specify username/password OR privateKey/passphrase, since these pairings are   
  118.      |       used together.  
  119.      |  
  120.     <server>  
  121.       <id>deploymentRepo</id>  
  122.       <username>repouser</username>  
  123.       <password>repopwd</password>  
  124.     </server>  
  125.     -->  
  126.   
  127.   
  128.     <server>  
  129.         <id>nexus-server</id>  
  130.         <username>deployment</username>  
  131.         <password>12345678</password>  
  132.     </server>  
  133.   
  134.     <server>  
  135.         <id>nexus-maven-server</id>  
  136.         <username>deployer</username>  
  137.         <password>123456</password>  
  138.     </server>  
  139.   
  140.     <server>  
  141.         <id>releases</id>  
  142.         <username>deployer</username>  
  143.         <password>123456</password>  
  144.     </server>  
  145.   
  146.     <server>  
  147.         <id>snapshots</id>  
  148.         <username>deployer</username>  
  149.         <password>123456</password>  
  150.     </server>  
  151.   
  152.     <server>  
  153.         <id>public</id>  
  154.         <username>deployer</username>  
  155.         <password>123456</password>  
  156.     </server>  
  157.   
  158.     <server>  
  159.         <id>thirdpary</id>  
  160.         <username>admin</username>  
  161.         <password>admin123</password>  
  162.     </server>  
  163.   
  164.     <server>  
  165.       <id>myserver</id>  
  166.       <username>yanggang</username>  
  167.       <password>123456</password>  
  168.     </server>  
  169.   
  170.   
  171.     <!-- Another sample, using keys to authenticate.  
  172.     <server>  
  173.       <id>siteServer</id>  
  174.       <privateKey>/path/to/private/key</privateKey>  
  175.       <passphrase>optional; leave empty if not used.</passphrase>  
  176.     </server>  
  177.     -->  
  178.   </servers>  
  179.   
  180.   <!-- mirrors  
  181.    | This is a list of mirrors to be used in downloading artifacts from remote repositories.  
  182.    |   
  183.    | It works like this: a POM may declare a repository to use in resolving certain artifacts.  
  184.    | However, this repository may have problems with heavy traffic at times, so people have mirrored  
  185.    | it to several places.  
  186.    |  
  187.    | That repository definition will have a unique id, so we can create a mirror reference for that  
  188.    | repository, to be used as an alternate download site. The mirror site will be the preferred   
  189.    | server for that repository.  
  190.    |-->  
  191.   <mirrors>  
  192.       <!-- mirror  
  193.      | Specifies a repository mirror site to use instead of a given repository. The repository that  
  194.      | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used  
  195.      | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.  
  196.      |  
  197.     <mirror>  
  198.       <id>mirrorId</id>  
  199.       <mirrorOf>repositoryId</mirrorOf>  
  200.       <name>Human Readable Name for this Mirror.</name>  
  201.       <url>http://my.repository.com/repo/path</url>  
  202.     </mirror>  
  203.      -->  
  204.   
  205.     <!-- This sends everything else to /public -->  
  206.     <!--  
  207.     <mirror>  
  208.         <id>nexus</id>  
  209.         <mirrorOf>central</mirrorOf>  
  210.         <url>http://192.168.120.247:8081/nexus/content/repositories/public</url>  
  211.       </mirror>  
  212.     -->  
  213.     </mirrors>  
  214.   
  215.          <!-- profiles  
  216.    | This is a list of profiles which can be activated in a variety of ways, and which can modify  
  217.    | the build process. Profiles provided in the settings.xml are intended to provide local machine-  
  218.    | specific paths and repository locations which allow the build to work in the local environment.  
  219.    |  
  220.    | For example, if you have an integration testing plugin - like cactus - that needs to know where  
  221.    | your Tomcat instance is installed, you can provide a variable here such that the variable is   
  222.    | dereferenced during the build process to configure the cactus plugin.  
  223.    |  
  224.    | As noted above, profiles can be activated in a variety of ways. One way - the activeProfiles  
  225.    | section of this document (settings.xml) - will be discussed later. Another way essentially  
  226.    | relies on the detection of a system property, either matching a particular value for the property,  
  227.    | or merely testing its existence. Profiles can also be activated by JDK version prefix, where a   
  228.    | value of '1.4' might activate a profile when the build is executed on a JDK version of '1.4.2_07'.  
  229.    | Finally, the list of active profiles can be specified directly from the command line.  
  230.    |  
  231.    | NOTE: For profiles defined in the settings.xml, you are restricted to specifying only artifact  
  232.    |       repositories, plugin repositories, and free-form properties to be used as configuration  
  233.    |       variables for plugins in the POM.  
  234.    |  
  235.    |-->  
  236.   <profiles>  
  237.       <!-- profile  
  238.      | Specifies a set of introductions to the build process, to be activated using one or more of the  
  239.      | mechanisms described above. For inheritance purposes, and to activate profiles via <activatedProfiles/>  
  240.      | or the command line, profiles have to have an ID that is unique.  
  241.      |  
  242.      | An encouraged best practice for profile identification is to use a consistent naming convention  
  243.      | for profiles, such as 'env-dev', 'env-test', 'env-production', 'user-jdcasey', 'user-brett', etc.  
  244.      | This will make it more intuitive to understand what the set of introduced profiles is attempting  
  245.      | to accomplish, particularly when you only have a list of profile id's for debug.  
  246.      |  
  247.      | This profile example uses the JDK version to trigger activation, and provides a JDK-specific repo.  
  248.     <profile>  
  249.       <id>jdk-1.4</id>  
  250.   
  251.       <activation>  
  252.         <jdk>1.4</jdk>  
  253.       </activation>  
  254.   
  255.       <repositories>  
  256.         <repository>  
  257.           <id>jdk14</id>  
  258.           <name>Repository for JDK 1.4 builds</name>  
  259.           <url>http://www.myhost.com/maven/jdk14</url>  
  260.           <layout>default</layout>  
  261.           <snapshotPolicy>always</snapshotPolicy>  
  262.         </repository>  
  263.       </repositories>  
  264.     </profile>  
  265.     -->  
  266.   
  267.     <profile>  
  268.         <id>nexus</id>  
  269.   
  270.         <repositories>  
  271.             <repository>  
  272.                 <id>public</id>  
  273.                 <url>http://192.127.10.23:8081/nexus/content/groups/public </url>  
  274.                 <snapshots>  
  275.                     <enabled>true</enabled>  
  276.                 </snapshots>  
  277.                 <releases>  
  278.                     <enabled>true</enabled>  
  279.                 </releases>  
  280.             </repository>  
  281.             <repository>  
  282.                 <id>thirdparty</id>  
  283.                 <url>http://192.127.10.23:8081/nexus/content/repositories/thirdparty/ </url>  
  284.                 <snapshots>  
  285.                     <enabled>true</enabled>  
  286.                 </snapshots>  
  287.                 <releases>  
  288.                     <enabled>true</enabled>  
  289.                 </releases>  
  290.             </repository>  
  291.             <repository>  
  292.                 <id>snapshots</id>  
  293.                 <url>http://192.127.10.23:8081/nexus/content/repositories/snapshots/ </url>  
  294.                 <snapshots>  
  295.                     <enabled>true</enabled>  
  296.                 </snapshots>  
  297.                 <releases>  
  298.                     <enabled>true</enabled>  
  299.                 </releases>  
  300.             </repository>  
  301.             <repository>  
  302.                 <id>releases</id>  
  303.                 <url>http://192.127.10.23:8081/nexus/content/repositories/releases/ </url>  
  304.                 <snapshots>  
  305.                     <enabled>true</enabled>  
  306.                 </snapshots>  
  307.                 <releases>  
  308.                     <enabled>true</enabled>  
  309.                 </releases>  
  310.             </repository>  
  311.         </repositories>  
  312.     </profile>  
  313.   
  314.     <!--  
  315.      | Here is another profile, activated by the system property 'target-env' with a value of 'dev',  
  316.      | which provides a specific path to the Tomcat instance. To use this, your plugin configuration  
  317.      | might hypothetically look like:  
  318.      |  
  319.      | ...  
  320.      | <plugin>  
  321.      |   <groupId>org.myco.myplugins</groupId>  
  322.      |   <artifactId>myplugin</artifactId>  
  323.      |     
  324.      |   <configuration>  
  325.      |     <tomcatLocation>${tomcatPath}</tomcatLocation>  
  326.      |   </configuration>  
  327.      | </plugin>  
  328.      | ...  
  329.      |  
  330.      | NOTE: If you just wanted to inject this configuration whenever someone set 'target-env' to  
  331.      |       anything, you could just leave off the <value/> inside the activation-property.  
  332.      |  
  333.     <profile>  
  334.       <id>env-dev</id>  
  335.   
  336.       <activation>  
  337.         <property>  
  338.           <name>target-env</name>  
  339.           <value>dev</value>  
  340.         </property>  
  341.       </activation>  
  342.   
  343.       <properties>  
  344.         <tomcatPath>/path/to/tomcat/instance</tomcatPath>  
  345.       </properties>  
  346.     </profile>  
  347.     -->  
  348.   </profiles>  
  349.   
  350.   <!-- activeProfiles  
  351.    | List of profiles that are active for all builds.  
  352.    |  
  353.   <activeProfiles>  
  354.     <activeProfile>alwaysActiveProfile</activeProfile>  
  355.     <activeProfile>anotherAlwaysActiveProfile</activeProfile>  
  356.   </activeProfiles>  
  357.   -->  
  358. </settings>  

 

 

注:

 

eclipse更新maven的时候,不小心手一抖,点上了Disable Maven Nature,然后工程右键菜单中的Maven栏就不见了!

其实这是把maven工程转换成了一般工程,再转回来就好了。

maven工程转为一般工程: 工程右键--->Maven--->Disable Maven Nature转为一般工程。

一般工程转为maven工程: 工程右键--->Configure--->Convert to Maven Project转为maven工程。

 

 

参考推荐:

maven(官方)

ant(官方)

 

maven常用命令介绍

很全的mvn介绍

Maven Getting Started Guide(官方命令)

 
(责任编辑:IT)
------分隔线----------------------------