Tagged Questions
4
votes
6answers
243 views
Is there a lightweight Java code metrics analyser that I can run in eclipse with Maven, Jenkins/Hudson?
I know about Sonar but I'd rather not (actually, can't) run a whole web app that says it likes 500Mb of ram just to run some reports on a build. I've already got Checkstyle, FindBugs & PMD - can I ...
4
votes
3answers
350 views
Reducing the Build time - Hudson
I would like to know,If there is a Hudson plugin to reduce the build time by distributing the tests across slaves.
I found a project called Test Load Balancer (TLB)
But this is used for only Ant ...
4
votes
9answers
2k views
Best Practices for Code Formatting on Large Projects
I maintain the build for a large J2EE/Maven/Hudson/Perforce project with about 20 developers spread across the world.
The solution in-place for code formatting is to format the codebase using jalopy ...
3
votes
1answer
107 views
SVN revision number accessible in compiled GWT package
I have a GWT project which has its source managed in SVN, is packaged using Maven and has its builds managed via Hudson. I want to get the SVN revision number of the latest check-in/build to be ...
3
votes
2answers
156 views
Releasing with Maven
I recently released a maven project and could not stop thinking that the whole process is very complicated and error prone. Let us say I have an application which consists of 3 modules A, B and C, ...
3
votes
1answer
209 views
Hudson executing just one job non-parallel
We have a hudson setup with just one executor. we want to get to a point where we can have at least 2 executors. The problem that is stopping us from doing this is a job which cannot be run in ...
3
votes
2answers
756 views
Hudson and maven-release-plugin
I'm using Hudson with the maven-release-plugin.
As you may know, the maven-release-plugin builds project in 2 steps: release:prepare, then release:perform.
How should I configure Hudson to execute ...
3
votes
1answer
223 views
How do you keep Hudson from giving Maven the -B option for builds?
When Hudson goes to build my project, it executes Maven as follows:
Executing Maven: -B -f /path/to/root/pom.xml clean install
This works fine on most projects. (The -B is for "batch" or ...
2
votes
1answer
37 views
How to update to latest snapshots in Hudson
I have a project with ~20 Maven libraries. Until recently we've been developing only SNAPSHOTS. However, now we are starting to work towards producing releases. We use Hudson for our continuous ...
2
votes
1answer
1k views
Managing big multi-module projects in Subversion/Maven/Hudson
We have a rather big java application which consists of tons of maven artifacts. Each subsystem has its own folder in the subversion tree with trunk/, branches/ and tags/ subfolders and hosts multiple ...
2
votes
1answer
258 views
Maven Error: Plugin's descriptor contains the wrong version
I'm trying to release a project with a custom plug-in dependency. And maven throws an error saying,
[INFO] [INFO] Internal error in the
plugin manager getting plugin
...
1
vote
0answers
99 views
http.proxyHost system property is set to null
Please help me to find out the reason of the following behaviour.
I have two applications running in Tomcat container: my application and Hudson (v2.2.0). Tomcat is started with ...
1
vote
0answers
125 views
Jenkins does not filter Maven resources with environment variables on free-style projects
It seems that Jenkins manages differently the environment variables when the job is a Maven 2/3 project or if it is a free-style project.
Let me show you my tests.
The project
It's a simple Java ...
1
vote
1answer
55 views
maven versions not seeing nexus deployments
We use Hudson and Nexus, and they work well apart from updating the versions of dependencies.
Following a release of a module, I want to upgrade some other module to look at the newly released ...
1
vote
3answers
410 views
How can I disable specific modules in Hudson without modifying the committed pom?
I'm using Hudson for a huge java project. 2 teams are involved on the project, making breaking the build very sensible and reports of failing unit tests or build breaks must be triggered as fast a ...
1
vote
3answers
818 views
Using Hudson and Maven to release an application for multiple platforms
This question is not really about best practices or architecture, but about how to specifically configure Hudson and Maven to accomplish what I want. I'm a bit lost.
I have a Java application which ...
0
votes
1answer
57 views
Hudson creates files with wrong user name
I am running hudson in Resin, startet by user joe. Builds use Maven but the failed with the following error:
Failed to chmod /local/.hudson/jobs/MyJob/site/apidocs/background.png : Operation not ...
0
votes
2answers
347 views
Maven incremental building
We currently have a big Maven 2 project that is rather a collection of many single standalone projects with complicated dependencies, with the exception of some common parent POMs for building. In the ...
0
votes
1answer
299 views
Tomcat failure to deploy from Cargo plugin via Hudson, NoClassDefFoundError
I am having some issues with a Maven profile setup to run HtmlUnit test cases. The
profile uses the Maven Cargo plugin to deploy the application and then subsequently run interface tests with ...
0
votes
1answer
141 views
Cargo maven plugin problem on hudson release
i'm trying to setup hudson job to release out project. I have one problem with cargo maven plugin. On release:prepare and release:perform it runs twice our integration tests. To run integration tests ...
0
votes
1answer
81 views
Is it OK to have a SNAPSHOT version in the test scope while releasing a project?
Im trying to release a project which has a dependency in the test scope.
The dependency is still in SNAPSHOT version. While I'm trying to release the maven release plugin throws an error saying the ...
0
votes
2answers
341 views
Maven : distribution management configuration in POM file or settings.xml
I would like to know what's the best practice for setting up the distribution management with maven.
We have the nexus repository configured in the maven settings.xml and in the parent pom file. ...
0
votes
1answer
216 views
Trouble with Hudson deploying artifacts other than project .war
I've got a project setup with Maven, being built in Hudson and artifacts deployed to Archiva. This all works as expected (final artifact is a .jar file).
The trouble I'm having is I'm trying to ...
0
votes
1answer
264 views
Hudson doesn't use Maven-generated classpath?
I'm trying to search the classpath in my project at runtime. We use Maven for build management and Hudson for CI. On my local box, of course, everything works great. However, when Hudson is running ...