Tagged Questions

0
votes
2answers
11 views

hudson build a project using junit maven and hsql in server mode

I have a project of persistence with spring and hibernate built with maven, I'm running the testing using Junit and a test database HSQL, when I do a test first initialize the database HSQL in server …
0
votes
1answer
5 views

Maven Jetty: Internal error in the plugin manager executing goal ‘org.mortbay.jetty:maven-jetty-plugin:6.1.22:run’

I have been able to run some web services locally through Maven's jetty plugin for testing purposes for some time now. I was able to run about 7 services like this and it worked fine. Recently, …
0
votes
4answers
63 views

Virus scanning in build process

I would like to incorporate scanning for viruses into a Java/Maven/Hudson build process. Unfortunately, i could not find any resources on dedicated tools for this kind of build step. My build …
0
votes
0answers
11 views

m2eclipse and Eclipse WTP

I have a very large workspace with about 30 projects all together. I am using Eclipse 3.5 with m2eclipse. I check out of my subversion repository using the defaults in order to import the projects …
0
votes
2answers
50 views

Eclipse won’t believe I have Maven 2.2.1

I have a project (built from an AppFuse template) that requires Maven 2.2.1. So I upgraded to this (from 2.1.0) and set my path and my M2_HOME and MAVEN_HOME env variables. Then I ran mvn …
0
votes
3answers
42 views

What are solid NMaven or build server for .NET alternatives?

Maven had a long history and is well supported in the Java world. NMaven has received a less successful start and has never became as popular in the C#/.NET world as its larger cousin was in the Java …
0
votes
1answer
25 views

maven repo spring-security RC

hi! can't find it anywhere: <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-core</artifactId> …
0
votes
1answer
10 views

Maven Surefire reports show multiple class entries rather than a suite.

Hello, I've been asked to configure Maven's surefire report generator to include one entry for the test suite which in turn tests classes A,B and C but instead of seeing this: A B C MySuite I see …
0
votes
0answers
7 views

deleting repositories in Archiva

I deleted a repository from archiva but I only deleted the configuration and not the contents. When I'm ready to delete the contents, what's the best way to do so? thanks, Jeff
0
votes
1answer
40 views

Maven webstart plugin not finding dependencies

Hoping someone can help me with this strange one. I’m trying to run the webstart plugin but it doesn’t seem to be able to find the main class within the jar being produce. The pom is as simple as it …
0
votes
2answers
35 views

How to determine at runtime the path to a Mavenized Eclipse project directory

Total Maven newbie, trying (along with the rest of a sizeable team) to convert a monstrous pile of legacy code from ant over to Maven. It's working reasonably well, but I'm having the following …
0
votes
1answer
50 views

Is there a way to just copy resources when using a Maven archetype (no Velocity)?

We are using a Maven archetype to create an initial setup for projects using our framework, which relies heavily on Freemarker. As a consequence we need to copy a few Freemarker templates when the …
0
votes
3answers
44 views

maven snapshot repositories

My project depends on a 3rd party library that only has snapshots in its maven repository (no releases, which seems strange, but that's how it is). Every time I do a full build (and clean my local .m2 …
0
votes
2answers
313 views

Maven assembly Plugin with Maven Jar Plugin

Hi, I'm trying to use the maven assembly plugin for the first time. Essentially, I want to combine the output of the maven assembly plugin with that of the maven jar plugin into the target/classes …