Re: Disable logins for continuum?

2007-08-12 Thread Luke Matthews
Thanks Jesse, worked a treat! Luke. Jesse McConnell wrote: if you are on the new 1.1 versions then just assign System Administrator to the Guest user and you should be good to go.. assign the Continuum Project Group Administrator to Guest as well jesse On 8/10/07, Emmanuel Venisse [EMAIL

Had to manually install artifact which was already in the repository

2007-08-12 Thread Yuen-Chi Lian
Hi guys, I had a strange problem yesterday, Maven was complaining about an artifact/dependency in the repository did not exist: C:\src\mule-2.0-M1\examplesmvn eclipse:eclipse -Dmaven.test.skip=true -Denforcer.skip=true -o -e + Error stacktraces are turned on. ... [INFO] A required plugin

Re: maven-jar-plugin index=true ignoring files in META-INF/

2007-08-12 Thread Zarick Lau
On 8/12/07, Greg Morgan [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Zarick Lau wrote: You're probably being bitten by http://jira.codehaus.org/browse/PLXCOMP-10. Thanks! I believe so !! Someone needs to update the maven-jar-plugin/maven-archiver to use a

'optionaltrue/optional' not inherited from parent POM

2007-08-12 Thread Zarick Lau
Dear users and developers, While I'm tidy up an multi-module project, I found strange an issue: In the parent pom, I have an artifact defined with 'optional=true' within the dependencyManagement: dependencyManagement dependencies dependency

Re: How to include the artfact/extraFiles/dependency in assembly (single module)

2007-08-12 Thread Zarick Lau
Alright, I got an answer myself. The solution is the add one more 'fileSet' to include the artifact produced the jar plugin. fileSet includes include${artifactId}-*.jar/include /includes directory${basedir}/target/directory outputDirectorylib/outputDirectory

Re: WSDL2Code Axis2 javax/wsdl/WSDLException NoClassDefFoundError

2007-08-12 Thread Sebastien Arbogast
I have exactly the same problem. I've tried many versions of the wsdl4j dependency, but I still get that exception. PeteTh wrote: I'm trying to use axis2-wsdl2code-maven-plugin with wsdl2code goal. However I'm getting inconsistencies with class versions, can anyone help? Has anyone got

Re: JBoss Embedded Container + Maven + howto?

2007-08-12 Thread r_sudh
Here is the code from the test class that I'm using: EJB3StandaloneBootstrap.boot(null); EJB3StandaloneBootstrap.scanClasspath(); HashtableString, String props = new HashtableString, String(); props.put(java.naming.factory.initial,

TestCase and resources in src/main/webapp

2007-08-12 Thread Janning Vygen
Hi, i have placed some message files in src/main/webapp/WEB-INF/messages/ in order to use Springs ReloadableResourceBundleMessageSource No i want to use this property files in a test class: protected void setUp ( ) throws Exception { messageSource = new

Re: 'optionaltrue/optional' not inherited from parent POM

2007-08-12 Thread Wayne Fay
As far as I'm concerned, optional doesn't make any sense in dependencyManagement. So I think what you're seeing is the correct behavior. If you want an element to be optional, you need to declare it as such in the child poms where you declare the dependency (minus version, which is inherited from