Maven在詹金斯上不起作用(但它通过Eclipse和命令行起作用) [英] Maven doesnt work on jenkins (but it does through eclipse and command line)

查看:92
本文介绍了Maven在詹金斯上不起作用(但它通过Eclipse和命令行起作用)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经对CI进行了一些测试,所有测试都在Maven中进行.当我在本地(Windows 10)的eclipse中运行它们时,以及在ec2 linux服务器中通过命令行运行它们时,构建都是成功的.

I have a few tests for CI, all in maven. The builds are successful when I run them in eclipse in my local (windows 10) and when I run them through command line in ec2 linux server.

仅当我从Jenkins构建同一个项目时,才会出现以下错误:

Only when I build same project from Jenkins I get the following error:

Waiting for Jenkins to finish collecting data[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.0:compile (default-compile) on project invalidlogin: Error while storing the mojo status: /var/lib/jenkins/workspace/project/invalidlogin/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst (Permission denied) -> [Help 1]

我正在使用PhantomJS作为浏览器.

Im using PhantomJS as browser.

如何让詹金斯工作?

  • 我使用chmod更新了权限,但仍然得到了相同的结果.
  • 为什么这会通过控制台而不是jenkins运行?

这是我的pom

<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>InvalidLoginV1</groupId>
  <artifactId>invalidlogin</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <name>invalidcredentials</name>
  <description>invalidcredentials</description>

  <properties>
<suiteXmlFile>src/main/resources/testng.xml</suiteXmlFile>

</properties> 

<dependencies>
<dependency>
  <groupId>org.testng</groupId>
  <artifactId>testng</artifactId>
  <version>6.8</version>
  <scope>test</scope>
</dependency>

<dependency>
    <groupId>org.seleniumhq.selenium</groupId>
    <artifactId>selenium-server</artifactId>
    <version>2.34.0</version>
    <scope>test</scope>
</dependency>

<dependency>
    <groupId>com.github.detro.ghostdriver</groupId>
    <artifactId>phantomjsdriver</artifactId>
    <version>1.0.4</version>
    <scope>test</scope>
</dependency>

<dependency>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-surefire-plugin</artifactId>
  <version>2.19.1</version>
  <type>maven-plugin</type>
</dependency>


</dependencies>  

<build>


<plugins>

    <plugin>
          <groupId>com.github.klieber</groupId>
          <artifactId>phantomjs-maven-plugin</artifactId>
          <version>0.7</version>
    </plugin>



<plugin>



<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<compilerVersion>1.8</compilerVersion>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>


</plugins>

</build>

</project>

推荐答案

问题确实与权限有关.我在设置时遇到了一些问题,但是我在这里找到了该指南: http://blog.manula.org/2013/03/running-jenkins-under-different-user-in.html

The issue was indeed with permissions. I had a few issues setting this up, however I found this guide here: http://blog.manula.org/2013/03/running-jenkins-under-different-user-in.html

基本上,您需要在服务器上添加一个先前存在的用户作为jenkins用户. sudo vim /etc/sysconfig/jenkins

basically you need to add a preexisting user on the server as the jenkins user. sudo vim /etc/sysconfig/jenkins

完成后,只需更改jenkins主页,webroot和日志的所有权

Once that is done, just change the ownership of jenkins home, webroot and logs

chown -R user:user/var/lib/jenkins 
chown -R user:user/var/cache/jenkins
chown -R user:user/var/log/jenkins

感谢@Reimeus!

Thanks @Reimeus!

这篇关于Maven在詹金斯上不起作用(但它通过Eclipse和命令行起作用)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆