Tagged Questions
3
votes
0answers
39 views
zend framework 2 + phpunit + multiple modules + continuous integration
Thanks in advance for any comments. I have just started to switch from Zend Framework 1 to ZF2 and after running through the quick start and several other tutorials I noticed that there is a short ...
0
votes
0answers
14 views
Jenkins Ant Skript Variables
I am using Jenkins to start an ant script.
Some variables i define using the EnvInject Plugin.
I set them in the Properties Content field of the EnvInject Plugin and pass them afterwards to the ant ...
0
votes
0answers
40 views
Precompiling JSPs in Jenkins CI
Has anyone called an ant script in Jenkins CI that pre-compiles JSPs using JspC? I'm trying to migrate my project to use Jenkins and when I call my ant script i keep getting the following exception:
...
1
vote
1answer
24 views
How to use special command line characters in ant?
Good morning,
I am trying to call the create-job task of jenkins-cli right from ant. My problem now is, that ant won't let me use the "<" char.
Here is what I try to do:
jenkins-cli -s ...
0
votes
1answer
22 views
Troubleshooting error MSB4018: The “SetInclusionListEntry” task failed unexpectedly
I am using Jenkins with Ant to build a VSTO Project on our build machine. Yesterday it was building fine, now today I am getting the following error:
[exec] Project "C:\Program Files ...
0
votes
1answer
31 views
JUnit jar in Jenkins build not seen
I have a build exported from svn that is failing on the 'TEST' target in my build.xml. It looks like Jenkins cannot see the junit.jar as I am getting the following error:
...
0
votes
1answer
20 views
Ant Non Recursive Fileset
Here is my directory structure:
module/
a/
foo.php
b/
bar.php
b/
c/
I would like to run a command for each directory under module/ but non recursively, so ...
0
votes
1answer
32 views
Include java project into android build
I've got such a problem
I have to include external java project into my android build.
The project structure is:
Alpha - project with shared classes and libs.
Beta - android project that uses ...
0
votes
2answers
40 views
Ant move, copy tasks failing on mapped drives in jenkins
I have an ant file which has move and copy tasks. The source and destination locations are on the mapped network drive R:\. When I run them on the command prompt the build is successful but when I ...
0
votes
1answer
38 views
How to kill child processes spawned from jenkins after a build?
While I'm building my project using Jenkins, I need to start a nodejs server process to host some files, if I were to start this process like the following, the build would hang infinitely
<target ...
0
votes
1answer
26 views
How to reference .jar from other project with ant?
I have project A. A needs to refernce the android support library which I have in project B. I would think it should be as easy as adding a class path entry such as:
<classpathentry kind="lib" ...
0
votes
0answers
31 views
Jenkins Ant Build (Main Script Execution) throws a NullPointer Exception
I have a Java code with main function in a Class DriverScript
In Eclips I have created a Ant build file and executed the target 'DriverScript' and it is working successfully..
But when i try to ...
0
votes
1answer
43 views
Ant Build: Extract class files from a Ivy dependency war file in the class folder
I have a project with a dependency to some other Java classes from another project.
In eclipse the two projects are running without any errors.
Now I want to build the project with the dependency ...
0
votes
0answers
70 views
Jenkins Ant task failing randomly [closed]
I have a jenkins project which build few projects. For few months it was working fine. But suddenly it started failing with Ant task failing.
Build step 'Invoke Ant' marked build as failure
And the ...
1
vote
1answer
33 views
Usage of ssehexec task in Jenkins build doesn't stop its execution
I have an Ant Task in the Jenkins Ant Execution Plugin, as a Post Build Step, to remotely run a shell script in one of our servers. The shell scripts starts a java process in the background. When I ...
1
vote
0answers
58 views
Worklight iOS native build fails on Jenkins
I am trying to do a Jenkins build for a Worklight hybrid application. I am able to build the hybrid part of the application, but when I try to create the .ipa file the build fails. I am using the ...
4
votes
2answers
273 views
How to use Selenium 2 + Jenkins
I would like to be able to use Selenium 2 with Jenkins.
I am new to both so please excuse any of my ignorance.
I noticed the following plugin for jenkins HERE, and installed it.
I have a base ...
1
vote
2answers
99 views
JAVA_HOME is not defined correctly (only from jenkins)
Trying to setup jenkins but my builds fails with:
$ ant test
Error: JAVA_HOME is not defined correctly.
We cannot execute /usr/lib/jvm/java-7-openjdk-amd64/jre/bin/java
Build step 'Invoke Ant' ...
0
votes
2answers
69 views
Jenkins does not execute batch scripts called through ant
Through jenkins the ant file build.xml is invoked with default target. The ant task invokes a batch file which launches a new window and after execution my ant unit tests are executed.
<exec ...
0
votes
1answer
256 views
library resolve to a path with no project.properties file
I'm having trouble building my project with Jenkins and referencing the Sherlock project library.
I can build the project with ant on my local system. The problem seems to be referencing the ...
0
votes
1answer
34 views
executing jenkins job based on svn update?
I am creatig a new Jenkin Job. This job is using SVN version control and coding is done in Java and also i am creating jar using ANT.
Now I would like to create job that detects changes in svn ...
0
votes
1answer
36 views
Jenkins [ERROR] - XTrigger exception - windows
I get the below trigger exception for Ivy trigger, So i checked the xml it is complaining about (in the temp folder). I found the xml is not valid, its because of some path strings with double quotes ...
1
vote
2answers
169 views
Jenkins commit a file after successful build
I am using Jenkins, Ant , Flex and Java for my web application.
Currently I update a build version file in Flex src and commit it before starting Jenkins build.
I want to avoid this manual process ...
0
votes
1answer
114 views
tomcat + Jenkins + Java EE source = failed compile
I'm having a tough time getting my very simply Java EE source to compile in Jenkins that's running on tomcat6 (on Centos 6.x). I've tried downloading JBoss but can't find the Java EE jar files so I ...
0
votes
0answers
65 views
Netbeans project runtime dependency handling in Jenkins build
Say you have an application project in Netbeans, and you've checked the box in Properties -> Build -> Packaging that says "Copy Dependent Libraries"
Then when you build this project in Netbeans it ...
1
vote
2answers
116 views
How to manage a common ant build script across multiple project build jobs on jenkins?
I have a set of java projects coming from different git repositories which I want to be built with Jenkins.
All of them share the same ant build script, which employs project specific configuration ...
1
vote
1answer
61 views
Jenkins build fail with Android Google API
I have an Android project with target Google API level 15, which I can successfully build locally on my machine with Ant. The issue is, however that when I try to build it on my jenkins server I get ...
0
votes
1answer
157 views
TestNG TestLink Jenkins Ant cannot find results
I've just began to work with TestLink but I cannot see the results of the executions: on my Jenkins I have an ANT build file which runs a TestNG suite, and it began to work writting that he had found ...
2
votes
3answers
91 views
how to deploy java project with jenkins [closed]
I use jenkins to test my java project and it is successful, but I don't know how to deploy my project to tomcat with ant, how to do?
0
votes
2answers
67 views
ant build script for behat error
I am trying to setup an ant build script for behat tests so I can run them from jenkins. When I run behat from the command line with bin/behat or ./bin/behat, the output works as expected. But when I ...
2
votes
1answer
36 views
Jenkins: How to make certain log messages from a tool fail the build?
I have a tool in my build process that is very tolerant towards errors and warnings. It will often only log them to the console but not make the build fail. Currently, I am using that tool in the form ...
0
votes
1answer
66 views
Jenkins triggering dependent builds only when necessary?
I have the following build scenario:
Project C depends on Project B which depends on Project A
Project X depends on C, Project Y depends on B, Project Z depends on A.
There are many other modules ...
0
votes
1answer
28 views
ant/Jenkins: move doesn't support the “quiet” attribute
My build script executes:
<move todir="gen" overwrite="true" quiet="true">
<fileset dir="gen">
<include name="**/BuildConfig.java.new"/>
</fileset>
...
0
votes
2answers
60 views
ant/Jenkins: move doesn't support the “quiet” attribute
My build script executes:
<move todir="gen" overwrite="true" quiet="true">
<fileset dir="gen">
<include name="**/BuildConfig.java.new"/>
</fileset>
...
0
votes
3answers
244 views
Ant absolute path to single file in fileset
I'm using Jenkins with Email-Ext plugin to automate PHP Unit Testing. If the tests failed I want to send a notification email to myself including the zipped test reports.
The Email-Ext plugin ...
-2
votes
1answer
73 views
How To Configure Ant Plugin For Jenkins
I have marathon Project where I have buid.xml which has many targets all are runned with the help of ant tool. but in the jenkins I need to select a target which I only need to build and test. I need ...
1
vote
2answers
139 views
Eclipse with Java EE (EJB), ANT and Jenkins / Hudson
My Goal is to get a Enterprise Java Application to be built on Jenkins. The Application consists of 4 Projects (Client-Interfaces, Webapplcation (incl. Faces), EJB Application (incl. JPA), ...
1
vote
1answer
932 views
Jenkins JUnit Test Result Report plugin states that the JUnit xml file is not found?
The exact message received from jenkins is:
No test report files were found. Configuration error?
Build step 'Publish JUnit test result report' changed build result to FAILURE
When configuring the ...
3
votes
5answers
568 views
Jenkins And android Build
I am trying to automate the android build process using Jenkins
I am using the following site to achieve this
Link to site
I am successfully able to Build it on my own machine. Initially i got ...
1
vote
4answers
264 views
ANT Jenkins unit test - count failed tests
I would like to count the failed tests, and make a failure only once when all tests completed. These tests are run by Jenkins every night, and reporting the results if there are failures or errors. ...
0
votes
2answers
379 views
Android Jenkins Build - debug “target” does not exist in the project error
I set up a Jenkins server along with the Android SDK on a headless Linux build server. I create an Android project via the typical "android create project ..." command.
After I "cd" into the new ...
0
votes
1answer
84 views
Ant Script on Jenkins: resource does not exist
I have a maven project, which has roughly the following structure:
sourceProject
- src
- distribution
- pom.xml
The pom.xml is building the project and copying the source to the distribution, ...
0
votes
0answers
86 views
Gerrit trigger plugin is modifying ant command line in Jenkins causing builds to fail
The command line of the ant build step is modified by the gerrit trigger plugin as explained in the issue https://issues.jenkins-ci.org/browse/JENKINS-11779 . I have checked the option to "escape ...
0
votes
1answer
142 views
Why is my Ant classpath ok in Eclipse but empty on Jenkins?
I am running my Ant build.xml file both locally and on a server running Jenkins.
Locally, inside Eclipse, the build works wonderfully. I set the classpath using:
<path id="classpath">
...
0
votes
0answers
103 views
JaCoCo Ant report different than Sonar report
To sum it up, I have an Ant build that runs the tests with Jacoco agent and creates the jacoco.exec file. I have this set up in Jenkins and it runs a sonar analysis. I've configured Sonar to use the ...
0
votes
1answer
193 views
Eclipse Ant Build is not not compiling in Jenkins
I am trying to schedule the following ANT build in jenkins to execute a java class. When I run the build configuration in Eclipse it compiles and excutes my java class. When I schedule and execute the ...
0
votes
1answer
814 views
Sonar analysis gives out of memory error, should I increase JVM heap space of Ant or Sonar server?
I am analysing a large project in Sonar and get the following error:
[sonar:sonar] 03:55:39.511 INFO p.PhasesTimeProfiler - Execute decorators...
BUILD FAILED
[...]
[...] ...
3
votes
1answer
112 views
Using Eclipse Compiler in Jenkins to get compiler warnings/errors
I want to have the eclipse compiler warnings shown in my Jenkins Job.
I know that it is possible to use the Eclipse Compiler using the ant javac adapter.
That way Eclipse compiler warnings are shown ...
0
votes
0answers
98 views
Server access Error: No route to host url when trying to build target with Jenkins
I have a target which is being build in Jenkins however the target uses SBT to download certain artifacts from Maven and Scala repos.
On my desktop the artifacts are downloaded just fine. However ...
0
votes
1answer
161 views
Running JUnits Via Ant, and Trying to Configure Cobertura Code Coverage In Jenkins.
So I have a java project in Eclipse. I build the war file via ant. Which I can invoke from Eclipse, or from the command line or via Jenkins. I am setting up the environment is such a way as to try and ...


