`
lovefly_zero
  • 浏览: 389889 次
  • 性别: Icon_minigender_1
  • 来自: 株洲
社区版块
存档分类
最新评论

如何正确在Hudson中使用Maven构建Job

    博客分类:
  • CI
阅读更多

相信大家都很有一个疑惑,就是我们在本地使用Hudson 构建Maven Job时,输入clean install 命令会发现它会去重新下载Jar包,一般情况下,我们都会在IDE和命令行调用过Maven构建,按理它应该不会去重新下载依赖才对,抱着和你同样的疑惑,我们现在去看看端倪。

我不打算在任务再调用一次clean install,而是直接使用help:effective-settings命令看看它是否调用我们的用户settings.xml文件。

在这里我先放一份我的用户settings.xml切片。

<settings>
  <!-- localRepository
   | The path to the local repository maven will use to store artifacts.
   |
   | Default: ~/.m2/repository -->
  <localRepository>d:/.m2/repository</localRepository>
 

  <!-- interactiveMode
   | This will determine whether maven prompts you when it needs input. If set to false,
   | maven will use a sensible default value, perhaps based on some other setting, for
   | the parameter in question.
   |
   | Default: true
  <interactiveMode>true</interactiveMode>
  -->

  <!-- offline
   | Determines whether maven should attempt to connect to the network when executing a build.
   | This will have an effect on artifact downloads, artifact deployment, and others.
   |
   | Default: false
  <offline>false</offline>
  -->

  <!-- proxies
   | This is a list of proxies which can be used on this machine to connect to the network.
   | Unless otherwise specified (by system property or command-line switch), the first proxy
   | specification in this list marked as active will be used.
   |-->
  <proxies>
    <!-- proxy
     | Specification for one proxy, to be used in connecting to the network.
     |
    <proxy>
      <id>optional</id>
      <active>true</active>
      <protocol>http</protocol>
      <username>proxyuser</username>
      <password>proxypass</password>
      <host>proxy.host.net</host>
      <port>80</port>
      <nonProxyHosts>local.net,some.host.com</nonProxyHosts>
    </proxy>
    -->
  </proxies>
  <pluginGroups>
		<pluginGroup>org.mortbay.jetty</pluginGroup>
  </pluginGroups>
  <servers>
	   <server>  
		<id>nexus</id>  
		<username>admin</username>  
		<password>1234</password>  
	  </server>  
	  <server>  
		<id>nexus-releases</id>  
		<username>admin</username>  
		<password>1234</password>  
	  </server>  
	  <server>  
		<id>nexus-public-snapshots</id>  
		<username>admin</username>  
		<password>1234</password>  
	  </server>
  </servers>
  <mirrors>
	<mirror>
      <id>nexus</id>
      <mirrorOf>*</mirrorOf>
      <url>http://127.0.0.1:8081/nexus/content/groups/public/</url>
    </mirror>
	</mirrors>
  <profiles>
	<profile>  
		<id>nexus</id>
		<activation>  
           <activeByDefault>true</activeByDefault>  
       </activation> 
		<repositories>  
		  <repository>  
			<id>central</id>  
			<url>http://central</url>  
			<releases>  
			  <enabled>true</enabled>  
			</releases>  
			<snapshots>  
			  <enabled>true</enabled>  
			</snapshots> 
			<layout>default</layout>
		  </repository>  
		</repositories>  
	   <pluginRepositories>  
            <pluginRepository>  
              <id>central</id>  
              <url>http://central</url>  
			 <releases>
			  <enabled>true</enabled>
			  <updatePolicy>daily</updatePolicy>   
              <checksumPolicy>warn</checksumPolicy>  
			  </releases>  
              <snapshots>
			  <enabled>true</enabled>
			  </snapshots>  
			  <layout>default</layout>
            </pluginRepository>  
          </pluginRepositories>  
	  </profile>  
	</profiles>  
	<activeProfiles>
	  <activeProfile>nexus</activeProfile>
	</activeProfiles>  
</settings>

 

 

    运行Maven Job ,目标输入help:effective-settings,控制台打印的切片如下:

 

 

[account-aggregator] $ D:\hudson_ci\hudson_dep_tools\apache-maven-2.2.1\bin\mvn.bat help:effective-settings
[INFO] Scanning for projects...
[INFO] Reactor build order: 
[INFO]   Account Parent
[INFO]   Account Email
[INFO]   Account Persist
[INFO]   Account Aggregator
[INFO] Searching repository for plugin with prefix: 'help'.
[INFO] ------------------------------------------------------------------------
[INFO] Building Account Aggregator
[INFO]    task-segment: [help:effective-settings] (aggregator-style)
[INFO] ------------------------------------------------------------------------
[INFO] [help:effective-settings {execution: default-cli}]
[INFO] 
Effective user-specific configuration settings:

<?xml version="1.0" encoding="UTF-8"?>
<!-- ====================================================================== -->
<!--                                                                        -->
<!-- Generated by Maven Help Plugin on 2010-12-08T11:24:17                  -->
<!-- See: http://maven.apache.org/plugins/maven-help-plugin/                -->
<!--                                                                        -->
<!-- ====================================================================== -->

<!-- ====================================================================== -->
<!--                                                                        -->
<!-- Effective Settings for 'JDONEE-ZAH$' on 'Jdonee-ZAH'                   -->
<!--                                                                        -->
<!-- ====================================================================== -->

<settings xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  <localRepository xmlns="http://maven.apache.org/SETTINGS/1.0.0">C:\Windows\System32\config\systemprofile\.m2\repository</localRepository>
</settings>

[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESSFUL
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1 second
[INFO] Finished at: Wed Dec 08 23:24:17 CST 2010
[INFO] Final Memory: 6M/127M
[INFO] ------------------------------------------------------------------------
Finished: SUCCESS

 

  God,怎么把构件都下载C:\Windows\System32\config\systemprofile\.m2\repository这个位置了。 看来Hudson根本就不认可Maven的环境变量以及用户级settings.xml。

  还好有神奇的-s参数(--settings)帮忙,这个参数的作用就是让用户指定可运行的settings.xml文件。我的用户级settings目录存放在C:\Users\Jdonee\.m2目录下。

  那么我们目标改成help:effactive-settings -s C:\Users\Jdonee\.m2\settings.xml,马上查看控制台的打印切片:

 

 

[account-aggregator] $ D:\hudson_ci\hudson_dep_tools\apache-maven-2.2.1\bin\mvn.bat help:effective-settings -s C:\Users\Jdonee\.m2\settings.xml
[INFO] Scanning for projects...
[INFO] Reactor build order: 
[INFO]   Account Parent
[INFO]   Account Email
[INFO]   Account Persist
[INFO]   Account Aggregator
[INFO] Searching repository for plugin with prefix: 'help'.
[INFO] ------------------------------------------------------------------------
[INFO] Building Account Aggregator
[INFO]    task-segment: [help:effective-settings] (aggregator-style)
[INFO] ------------------------------------------------------------------------
[INFO] [help:effective-settings {execution: default-cli}]
[INFO] 
Effective user-specific configuration settings:

<?xml version="1.0" encoding="UTF-8"?>
<!-- ====================================================================== -->
<!--                                                                        -->
<!-- Generated by Maven Help Plugin on 2010-12-08T11:26:55                  -->
<!-- See: http://maven.apache.org/plugins/maven-help-plugin/                -->
<!--                                                                        -->
<!-- ====================================================================== -->

<!-- ====================================================================== -->
<!--                                                                        -->
<!-- Effective Settings for 'JDONEE-ZAH$' on 'Jdonee-ZAH'                   -->
<!--                                                                        -->
<!-- ====================================================================== -->

<settings xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  <localRepository xmlns="http://maven.apache.org/SETTINGS/1.0.0">d:/.m2/repository</localRepository>
  <servers xmlns="http://maven.apache.org/SETTINGS/1.0.0">
    <server>
      <username>admin</username>
      <password>***</password>
      <id>nexus</id>
    </server>
    <server>
      <username>admin</username>
      <password>***</password>
      <id>nexus-releases</id>
    </server>
    <server>
      <username>admin</username>
      <password>***</password>
      <id>nexus-public-snapshots</id>
    </server>
...省略...

 

    哈哈,大功告成对不对,可是现在还有点小小的瑕疵,如果我定义很多的Maven任务,新建任务都要再输一遍实在是很麻烦(虽然很多时候,我们会通过复制任务减少一些配置量),而且一旦我迁移到其它系统环境,比如Linux等等,同样也不方便。

   所以我们必须要把它定义到全局变量中。

   点击“系统管理”,选择“系统设置”,启用“Environment variables”,新增一个环境变量,输入如Key=yoursettings,Value=C:\Users\Jdonee\.m2\settings.xml。

     注:key值不要使用特殊字符如"-"等,以免命令行不认。

   关于Environment variables的官方解释是:这些键值对每个节点上的每个应用都有效.它们可以在Hudson配置(如$key或者${key})中使用, 并且在每个构建启动时被加入到环境变量中.

   好了,我们在Job的目标更改为help:effective-settings -s $yoursettings执行,控制台打印更上面的切片一样,Perfact!

1
0
分享到:
评论
2 楼 331008019 2013-12-21  
Hudson 系列的文章写得够细、够全! 学习了…
1 楼 guorabbit 2010-12-09  
Jdonee 探索精神不错,学习一下。
help:effactive-settings -s $yoursettings
又学了一个新用法。

相关推荐

    HUDSON持续集成MAVEN项目

    在本教程中,我们将探讨如何设置和配置HUDSON,以便有效地管理和自动化Maven项目的构建过程。 首先,我们需要了解HUDSON(Jenkins)是一个开源的持续集成服务器,它提供了丰富的插件支持,能够与各种版本控制系统、...

    Hudson+Maven+SVN

    3. **JDK设置**:为了支持不同版本的Java项目,可以在Hudson中配置多个JDK,并在Job中选择适用的版本。 4. **开始创建job**:创建一个新的Hudson Job,指定SVN仓库URL,选择合适的构建触发器(如定时或提交触发),...

    hudson+maven+svn的简单自动化部署,目前本人已经使用在现网了

    这样,每当有新的代码提交到SVN,Hudson就会自动拉取代码,执行Maven构建,如果构建成功,即可实现自动化部署。 总的来说,通过Hudson、Maven和SVN的集成,开发者可以构建出一套高效且可靠的自动化部署流程,极大地...

    hudson maven 集成

    6. **配置Maven构建** 在项目配置中,指定Maven的Goals and options,比如常见的`clean install`,这会执行Maven的清理、编译、测试和打包目标。还可以配置Maven的全局设置文件路径,以便使用自定义的`settings.xml...

    Hudson+Maven+SVN 搭建持续集成环境

    1. 完成配置后,可以在 Hudson 首页看到新创建的 Job,点击 "Schedule a build" 图标进行手动构建。 2. 构建过程会显示在 "Build Queue" 或 "Build Executor Status",完成后,检查 "Console Output" 查看构建结果。...

    git-maven-nexus-hudson使用手册

    本文将围绕“git-maven-nexus-hudson使用手册”的核心,深入探讨Git在项目中的应用,以及如何结合Maven、Nexus与Hudson构建高效开发流程。 ##### 用户环境准备与权限设置 在搭建Git远程仓库前,首先需进行用户环境...

    hudson使用演示

    - 在Hudson中,每个项目(Job)都代表一个独立的构建任务,可以是单独的软件模块或整个应用程序。 - 创建项目时,需指定源代码管理系统的URL、构建触发器(如定时构建、代码提交后自动构建)以及构建脚本。 3. **...

    持续集成开发工具Hudson资料收集

    - 配置构建job,包括源码管理(如Git或SVN)、构建触发器、构建步骤等。 3. **Hudson的工作流程** - **版本控制**:开发者将代码变更推送到版本控制系统。 - **触发构建**:Hudson监听版本库,一旦检测到变化,...

    Hudson持续集成环境搭建

    - JUnit已经被集成到Maven中,只需要在Maven的`Build`属性中配置 `install` 目标即可查看测试结果。 #### 六、Hudson通过Maven集成静态分析插件 **1. 安装静态分析插件** - 需要安装Checkstyle Plug-in、...

    hudson配置手册

    - 在构建步骤中选择具体的构建操作,例如执行Maven命令或Windows批处理命令等。 - **项目测试报告** - Maven-surefire-plugin会在项目的target/surefire-reports目录下生成JUnit格式的测试报告。 - 在Hudson任务...

    持续集成环境搭建

    - 在"系统配置"中,确保指定了Maven的安装路径,以便Hudson能找到Maven执行构建任务。 3. **创建Job**: - 对每个项目创建一个Job,比如entities和web,根据项目在SVN中的位置配置不同的源代码管理URL。 - 完成...

    Hudson Jenkins插件相关

    例如,Maven插件可以帮助Jenkins自动化执行Maven构建过程,Junit插件则用于展示测试结果。此外,还有像是SonarQube插件用于代码质量管理,FindBugs插件用于静态代码分析等。 4. **工作流与配置** 在Jenkins中,每...

    jenkins_svn_maven持续集成.docx

    - **配置SVN**:在创建的Jenkins Job中配置SVN源码库的URL以及登录凭证。完成配置后,即使在控制台显示警告信息,也可以直接返回主界面开始构建。 #### 五、构建与测试 - **构建流程**:Jenkins会自动从SVN拉取最新...

Global site tag (gtag.js) - Google Analytics