Using local repositories - revisited

2003-11-21 Thread hermod . opstvedt
Hi I followed the instructions and set : maven.repo.remote in the project.properties file to point to a local http server + the maven at ibiblio. However, when I run Maven I get an Exception : Error retrieving artifact from [http://sdlut003/pub/lib/repository/jaxb/jars/namespace-1.0.jar]:

How to include jars and add them into the MANIFEST.MF/Class-Path attribute?

2003-11-21 Thread egglersim
When building an ear, i'd like to include the dependent jar files in the lib dir of the ear and add them to the Class-Path of the including applications. Is there any easy way to do so? Cheers, simon - To unsubscribe, e-mail:

Re: How to include jars and add them into the MANIFEST.MF/Class-Path attribute?

2003-11-21 Thread R a n e s
Hi, You can set the ear.bundle to true. dependency idcommon/id typejar/type properties ear.bundletrue/ear.bundle /properties /dependency Regards, Ranes. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, November 21, 2003 2:57 PM

AW: How to include jars and add them into the MANIFEST.MF/Class-P ath attribute?

2003-11-21 Thread Rademacher Tobias
You should add the dependencies into Class-Path of EJB-JARS manifest. properties ejb.manifest.classpathtrue/ejb.manifest.classpath /properties This works fine for me! I don't know how to get them installed into a sepearate lib directory. So I distribute all jars in the root

RE: How to include jars and add them into the MANIFEST.MF/Class-Path attribute?

2003-11-21 Thread egglersim
Problem with the ear.bundle is, that the jar is installed as java module (which is reserved for e.g. ejb client jars). I can manually copy the jar via the copy-deps task, but that doesn't solve the problem of the classpath (escpecially for war's, because there's no war.manifest.classpath

AW: How to include jars and add them into the MANIFEST.MF/Class-P ath attribute?

2003-11-21 Thread Rademacher Tobias
For WAR you only only have to provide lib directory within the WAR File. It can contain any depending JAR you need. This is standard for WAR files (startig at 2.3 Servlet Spec I think). For EJB-JARS and EAR we don't have such a standard currently. You have to provide the relative path in the

Plugin(s) for EJBs

2003-11-21 Thread harald . ommang
Hi! As far as I can see, there are several plugins with functionality related to EJB projects: J2EE, EJB and EAR for build goals Application Server and WAS 4.0. for control goals. Can someone give a quick overview of the differences between J2EE and the two EJB/EAR plugins. Recommendation for

Re: How to include jars and add them into the MANIFEST.MF/Class-Path attribute?

2003-11-21 Thread khote
I have a WAR, JAR, EJB, and even a SAR project. In my EAR I set these dependencies, they all seem to be able to find each other when the EAR is deployed (JBoss). Of course I have to arrange the build in the correct order, for example the JAR project has to be built first since the other projects

Re: Translate Maven in French

2003-11-21 Thread Charles-Alexandre Sabourdin
Ok, So I start with the Junit-repport I openned : ~home/.maven/plugins/maven-junit-report-plugin-1.3/junit-failed.jsl ~home/.maven/plugins/maven-junit-report-plugin-1.3/junit.jsl None of them have a fmt tag can you tell me where (and how ) to use those tag ? Le Mercredi 19 Novembre 2003

Re: Translate Maven in French

2003-11-21 Thread Emmanuel Venisse
http://jakarta.apache.org/commons/jelly/libs/fmt/tags.html If you want translate report, I prefer if you work on cvs files and not on your extrected plugins. Emmanuel - Original Message - From: Charles-Alexandre Sabourdin [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, November

Re: Translate Maven in French

2003-11-21 Thread Charles-Alexandre Sabourdin
Le Vendredi 21 Novembre 2003 14:17, Emmanuel Venisse a écrit : http://jakarta.apache.org/commons/jelly/libs/fmt/tags.html If you want translate report, I prefer if you work on cvs files and not on your extrected plugins. I agree with you, but first I try to set up on my working environement.

Re: Translate Maven in French

2003-11-21 Thread Emmanuel Venisse
You have some samples here: http://cvs.apache.org/viewcvs.cgi/jakarta-commons/jelly/jelly-tags/fmt/src/test/org/apache/commons/jelly/tags/fmt/ - Original Message - From: Charles-Alexandre Sabourdin [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, November 21, 2003 2:43 PM Subject:

Setting properties for repositories with maven-war-plugin

2003-11-21 Thread Tim Müller-Seydlitz
Hi, what properties must be set for maven-war-plugins's goals war:install war:deploy for the local and remote repository? I can't find it in the documentation for the maven-war-plugin TMS - To unsubscribe, e-mail: [EMAIL

Problem copying resources defined in project.xml

2003-11-21 Thread Vikram_Kumar
The resources I've defined in the project.xml are not being copied to target/classes. resources resource directory${basedir}/conf/hibernate/oracle/directory includes include**/*/include /includes /resource Has