0
votes
0answers
11 views
install output jar into local repository using pom.xml
I am using maven to build the project. Output of the maven build is a jar file.
Q1. What should I onclude in pom.xml file so that it will help me to install artifact (.jar file) in my local ...
0
votes
2answers
15 views
Nexus doesn't update metadata for SNAPSHOT
My setup is a jenkins that polls my git repo and does publish to a nexus repo on each push. Then I have a downstream project that takes this artifact and deploys it to a test server. This project is ...
0
votes
1answer
12 views
Deploying artifacts from nested projects using Artifactory Jenkins plugin
I'm working on a project that uses Maven 3.0.4 .
A sample project structure
parent Project (packaging=pom, modules=model, services)
model Project (packaging=pom, modules=hr-model, gl-model)
...
1
vote
0answers
21 views
Staged deployment of snapshot artifacts with Maven and Jenkins
Problem Description
We have several multi-module projects which are depending on each other. So something like this:
messaging
framework
othercomponent
They have separate source control ...
0
votes
2answers
25 views
Email-ext Jenkins: How to send email with Tests statistics like Run: 10, Failed:2, Passed: 8
I use Maven+TestNG auto-tests run by Jenkins. I know that the is a token for failed tests like ${FAILED_TESTS} but it also includes long stack-trace which is difficult to read.
So I want Jenkins to ...
0
votes
2answers
35 views
How to manage maven settings.xml on a shared jenkins server?
I have a Jenkins cluster that is shared by several teams, that I can configure build jobs on, However i can't easily make changes to the Jenkins configuration itself.
There is a central "nexus pro" ...
0
votes
1answer
29 views
+50
How to send an email from Jenkins only in a release?
I was trying to resolve this issue, and searching forums etc. and trying for myself, without success.
We have a jenkins job and there we use the Release Plugin (with a standard configuration)
In ...
0
votes
2answers
17 views
Maven - 2.2.1 -------Access denied error
While building the java module using the maven 2.2.1 by executing the command mvn clean install:
the below error occurs. It is frequently occurs, and if we try for the next time, it is getting ...
0
votes
1answer
32 views
Is it possible to configure a Jenkins Build Job to pick maven artifacts from local maven repository
Is it possible in someway to configure my build job such that rather than picking maven artifacts from the central repo , it picks them from the local maven repo. residing on my system?
NOTE - I want ...
0
votes
1answer
33 views
Maven concurrent builds on CI server
I have an interesting case, in my opinion. We are using maven, and being that we have to support multiple versions of our product we sometimes have a 1.x and 2.x build structure going on. When both ...
0
votes
0answers
31 views
Jenkins maven build
Im able to build a project using maven install on the windows console but im getting the following when trying to initiate a build from Jenkins. any help will be appreciated
Thanks
Parsing POMs
...
0
votes
0answers
44 views
Jenkins: Maven can run “clean install”, but not “--version”
I have a Maven job in Jenkins. It can run "clean install", but not a simple "--version". It actually does output all the info from "mvn --version", but then fails with a ...
1
vote
1answer
84 views
Deploy to weblogic using maven and jenkins
We are using Jenkins in our project for build and deployment on dev environments. I have sucessfullly created a war file using maven in jenkins and now I have to create another job to deploy that war ...
0
votes
0answers
21 views
create post request for jenkins svn authentication
Is it possible to reflect the changes made in hudson.scm.SubversionSCM.xml file without restarting jekins server? I need to change the svn username and password without restarting jenkins ?
<?xml ...
0
votes
1answer
20 views
Generate Unique schema name for Testing
How do I use Jenkins/Maven Plugin to generate schema name for testing my application.
I need this schema name to be unique (Not exist in DB - Oracle/SQL).
Is there a Jenkins unique string generator?
0
votes
2answers
48 views
How to run a Jmeter test using Maven 2?
i want to run a Jmeter test using Maven 2, so i can integrate it in Jenkins .I tried to do it using WSO2 Test Automation Framework following this tutorial
but i got this error:
Missing artifact ...
0
votes
0answers
19 views
Maven logs in jenkins
I am using jenkins with maven on windows. I am having 1 master, 2 slaves configuration where selenium grid is distributing test cases on all the three nodes.
My problem is:
Using -l flag in maven ...
0
votes
1answer
32 views
jaxb2-maven-plugin fails on Jenkins
The configuration below works perfectly when I build my project using the command mvn clean package, but when I run the same command on Jenkins it produces an error message (bottom). I've tried to ...
0
votes
0answers
42 views
error in building maven project through jenkins
I am using jenkins for continous integration of maven builds.
I am getting the following error
Error occurred during deployment: Exception while deploying the app
[Projectname] : Cannot resolve ...
0
votes
0answers
41 views
Jenkins Inegration with TestNG.(when running from jenkins it's not invoking browser)
My project contains (Webdriver,Maven3.05,jenkins) when I run maven command "mvn test" , test will trigger and browser will be invoked, the same set when i had configured using jenkins it will run the ...
0
votes
0answers
36 views
maven project not building through jenkins
I am using jenkins for continous integration of maven builds.
I am getting the following error
Error occurred during deployment: Exception while deploying the app [Projectname] : Cannot resolve ...
0
votes
1answer
27 views
Prevent maven from skipping tests (default = skip)
My pom.xml looks like this:
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
...
1
vote
1answer
86 views
Jenkins: How to use a variable from a pre-build shell in the Maven “Goals and options”
I have a Maven job in Jenkins. Before the actual build step I have an "Execute shell" pre-build step. In that shell I set a variable:
REVISION=$(cat .build_revision)
I would like to use that ...
0
votes
0answers
74 views
How to push Slidingmenu jar into remote maven repository?
I am new to Maven. In my maven android project I have SlidingMenu included. I got the SlidingMenu jar file in my local .m2 repository from GitHub.
I have got three folders inside my ...
0
votes
0answers
35 views
TestLink and Jenkins Test Case not run
I have three test cases in TestLink and when I build the maven project, using Jenkins, none of the tests case is run, the project is built correctly but the test cases aren't run. I am using JUnit for ...
1
vote
1answer
128 views
Global MAVEN_OPTS does not seem to work with Jenkins
I installed Jenkins 1.512 on CentOS (info as follows) and configured it to work with apache-maven-3.0.4.
Linux server.masstermmind.com 2.6.32-358.2.1.el6.x86_64 #1 SMP Tue Mar 12 14:18:09 CDT 2013 ...
1
vote
0answers
24 views
Accessing ExecutedMojo data from Jenkins REST API
I can access most of a maven build's information through the Jenkins REST API, but I've not been able to find the ExecutedMojos, which I need for their timing information. I see that this information ...
0
votes
1answer
90 views
Issue on Running JUnit Selenium tests in Jenkins
I'm beginner by using Selenium and Jenkins. So here is my problem.
I got on a Linux VM, jenkins which is installed and got plugins : JUnit attachment and filesystem_SCM.
I got in a folder of that VM ...
0
votes
0answers
35 views
Build Android Apps with Jenkins; proguardJvmArguments can not be assigned
I'm trying to build an Android-App on Jenkins.
A local build with Maven works, but on Jenkins I keep getting this error:
[INFO] --- android-maven-plugin:3.1.1:proguard (default-proguard) @ ...
2
votes
1answer
41 views
Avoid multiple upload of release artefact in nexus by Jenkins
I have a web project split in multiple maven artefacts.
Let say it is :
A, a jar
B, a jar
C, a jar
D, a war
So, D has a dependency on B and C. B has a dependency on A.
Those modules versions are ...
0
votes
0answers
36 views
How to get Class and method level complexity using JavaNCSS plugin with Maven/Jenkins
I am using javancss-maven-plugin with Jenkins to generate the statistics on CCN for all classes and methods.
The POM file has the following section for the plugin.
<build>
<plugins>
...
0
votes
0answers
26 views
Unstable build with Maven+Nexus+Jenkins
I have a build environment with Maven3.0.4, Nexus 2.2 and Jenkins 1.508. To support an active and dynamic development environment, all artifacts in my solution use snapshot version and maven tries to ...
0
votes
0answers
29 views
sbt cannot download artifact published by another sbt build
I have two projects A and B, such that B depends on A. I build project A through the sbt plugin during a jenkins build. The sbt command I use is simply sbt publish. The publishTo key is set as such:
...
2
votes
2answers
78 views
Strategy for maven deploy via a Jenkins job
I have a Jenkins job that use maven build goals 'clean package deploy' for the master git branch. However, due to the nexus repo not allowing redeploys, if the Jenkins job runs a second time without ...
0
votes
2answers
89 views
Jenkins can not build with Maven. Might be proxy-issue
I'm trying to set-up a environment with Maven, Jenkins, SVN and Nexus.
I added Jobs to Jenkins via SVN, but Jenkins can not build these Jobs due to a Maven error.
Here is the error-log
[INFO] ...
-1
votes
1answer
54 views
How to build a multi-module maven project in jenkins
I have a projects structure as follows:
ProjectParent
- pom.xml
ProjectApp
-pom.xml
ProjectAPI
-pom.xml
ProjectModels
-pom.xml
ProjectServices
-pom.xml
Etc..
...
0
votes
1answer
262 views
groovy.lang.MissingPropertyException: No such property: manager for class: Script1
I am trying to invoke Groovy inside Hudson (using groovy plugin) to get some properties for our build. But I am getting this exception:
groovy.lang.MissingPropertyException: No such property: manager ...
0
votes
0answers
64 views
Cobertura not generating coverage.xml
I am using maven3 and cobertura. Its able to generate only html code coverage report. There is no coverage.xml created inside cobertura folder. My configuration is
<plugin>
...
0
votes
0answers
27 views
Job import in Jenkins
I am using job import plugin for importing the jobs from one jenkins to another.
It is working for Freestyle type projects, but it is not working for Maven 2/3 type project.
It says FAILED - Not a ...
0
votes
2answers
197 views
Having Problems Running my Testng Test Suite on Jenkins
Here is the stacktrace error that I am seeing
[INFO] --- maven-surefire-plugin:2.8.1:test (default-test) @ eselenium-smartpearsonplayer-pageobjects ---
[INFO] Surefire report directory: ...
0
votes
0answers
32 views
Is it possible to get feedback in Maven when running unit tests written in Quest Code Tester and notify Jenkins in a proper way?
First I'm going to describe my current situation. I'm doing research about unit testing for PLSQL and Continuous Integration. I setup a test database with a package which contains procedures and ...
0
votes
3answers
72 views
How to get the last build date in Hudson
How can I get the last build date in Hudson? I need to pass that date back to Maven to generate the changelog report. Or is that a better way to achieve that?
I am using Hudson 2.2.1.
0
votes
1answer
40 views
How to choose the directory where i want to save the Java documentation?
I'm working with jenkins, i created a project with maven , so when i build the project in jenkins i create the documentation just with the follow goal:
javadoc:javadoc
but jenkins save all this ...
0
votes
1answer
85 views
Jenkins + sonar-maven-plugin
Anybody know how to change/define the source directory for sonar-maven-plugin? I've tried to define parameters -Dsonar.source=/src/main/scala -Dsonar.test=/src/test/scala but these are not applied ...
1
vote
1answer
98 views
Does Jenkins/Hudson require maven-surefire-plugin to publish test results?
Does Jenkins/Hudson require maven-surefire-plugin to be executed in order to display "Latest Test Result", "Test Result Trend" diagram and to allow users to drill down to specific classes/tests? I was ...
1
vote
0answers
43 views
Checkstyle in Jenkins - NoSuchMethodError
I am trying to get checkstyle to work in jenkins. In maven alone, everything runs smoothly, but when I run the checkstyle:checkstyle target in jenkins, the follwong error apperas:
mojoSucceeded ...
0
votes
2answers
106 views
Passing arguments to Maven release build
I'm trying to release a library using Maven and perform a site-deploy to sourceforge (I have create an interactive shell first). The release is done by a Jenkins job (using the Maven Release Plugin ...
1
vote
1answer
73 views
How can I publish an SBT project with build-time access to read-only private credentials?
I want to use the CloudBees Jenkins service to build nightly snapshots of an SBT-based
scala project and publish them to the Sonatype OSS Maven Repository. SBT has
two ways of providing publishing ...
0
votes
0answers
44 views
webstart maven plugin works only locally
I use webstart-maven-plugin to build my applet, sign it, etc.. And when I run package goal on local machine it builds fine. But when I build my project and then install it to Artifactory using ...
0
votes
1answer
213 views
Jenkins / Maven Release Plugin (cascade release)
I've got a bunch of projects with enough dependencies that the thought of clicking 'Perform Maven Release' and typing in my SVN username/password on each dependent manually, bottom up, brings on a ...


