[PATCH] add correct ejb-client to war if configured in dependency

2006-08-09 Thread AndreasWuest
Hello, attached you will find a patch that will allow the maven-war-plugin to add a ejb-client created by the maven-ejb-plugin. With the latest cvs snapshot it is not possible to add the ejb client to the war, always the ejb.jar will be added to the war file what is not really inteded. this depe

Maven 2.0.4 - multi module reporting

2006-08-09 Thread Jan Vissers
I'm evaluating maven 2.0.4 and am wondering what the current 'state' is for multi module reporting. I've read that there are various issues with it. What I like to know is: * does multi module reporting (aggregation) work for: - surefire - checkstyle - jdepend -

Re: Maven and Selenium?

2006-08-09 Thread Christophe DENEUX
The 2.x site has been published. Christophe DENEUX / Capgemini Sud / Méditerranée Technical Leader Tel: + 33 4 93 72 43 74 / www.capgemini.com Fax: + 33 4 93 21 02 95 Porte de l'Arénas - Entrée B / 455 Promenade des An

Re: Conflicting Dependency Version Dilemna

2006-08-09 Thread Craig McClanahan
On 8/9/06, Mike Perham <[EMAIL PROTECTED]> wrote: Again, this is because dependency B is not using version ranges but rather forcing a specific version on its downstream dependents. Thinking about this a little further, there is a QE viewpoint that leads me to believe that declaring a speci

Re: Conflicting Dependency Version Dilemna

2006-08-09 Thread Craig McClanahan
On 8/9/06, Mike Perham <[EMAIL PROTECTED]> wrote: Again, this is because dependency B is not using version ranges but rather forcing a specific version on its downstream dependents. Ah, but dependency B is a third party library ... and the entire transitive dependency tree for Shale (whic

Re: Conflicting Dependency Version Dilemna

2006-08-09 Thread Mike Perham
Again, this is because dependency B is not using version ranges but rather forcing a specific version on its downstream dependents. If A requires a different version, it has to declare that dependency in order to override the transitive dependency version from B. There's nothing Maven can do

-javaagent in integartion tests

2006-08-09 Thread Andrus Adamchik
I am having trouble using instrumentation API with Surefire. The project pom can be found here - [1]. Essentially, no matter whether I start mvn with "-javaagent" in MAVEN_OPTS, or use fork with , I am getting an exception (see below). When I start unit tests with a main method of a regula

Re: Native artifacts (.dll, .so etc)

2006-08-09 Thread Nick Veys
It can, there is a native-maven-plugin on codehaus. It should work for most simple JNI projects. The various OS's though, I'm not sure. You specify the OS in the pom, and you'd need the various platform dependencies available as well as a cross-compiler for each if you wanted to do this build on

Re: Packaging all modules as Jar

2006-08-09 Thread Edwin Punzalan
The version you're using doesn't "easily" support what you want to accomplish. You might want to try the 2.1 version or maybe the snapshot version 2.2-SNAPSHOT. I have a staging site deployed for 2.2-SNAPSHOT which has an example of you're trying to do at http://people.apache.org/~epunzala

RE: invocation of external commands

2006-08-09 Thread Frederik Bayart
Have a look at http://mojo.codehaus.org/exec-maven-plugin/ Frederik -Original Message- From: Adrian Shum [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 09, 2006 3:32 AM To: users@maven.apache.org Subject: invocation of external commands Hi All, I just wonder if there is any plugins

Running a script/bat file - Post Build

2006-08-09 Thread Prashanth Krishnamurthy
Hi, I would like to execute a script or a bat file after the build. Does continuum has any way to execute this ?What is the best way ? regards --Prashanth __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://ma

RE: Optional Goals & Dependencies

2006-08-09 Thread Chris Hilton
Then you probably want to become familiar with the wonderful world of profiles. http://maven.apache.org/guides/introduction/introduction-to-profiles.htm l Chris > -Original Message- > From: Douglas Ferguson [mailto:[EMAIL PROTECTED] > Sent: Wednesday, 09 August, 2006 17:25 > To: 'Maven

Optional Goals & Dependencies

2006-08-09 Thread Douglas Ferguson
I am trying to figure out a way to define optional goals and/or dependencies. Is there a way to do this? I am looking for something similar to the ability in ant to only do a certain task if a certain property is set. __ Douglas W. Ferguson EPSIIA - A

Native artifacts (.dll, .so etc)

2006-08-09 Thread Chris Audley
Can maven handle native artifacts? I have a java project with an associated JNI DLL that I would like to have in the maven repository for generating assemblies. The real problem with native libraries is how to handle system dependencies. I have three versions on my JNI library, one each for wind

RE: Automating install:install-file

2006-08-09 Thread Edelson, Justin
> I would *love* to be able to make the artifact of a project an existing jar file. But you have to understand that this isn't what the "jar" or "pom" packaging types do. > Instead I have to struggle with tricking maven into thinking that it has built a jar file when it hasn't. You just have you u

Re: Retrieving root directory in maven 2

2006-08-09 Thread Vincent Siveton
${project.parent} parent project ${project.parent.basedir} for the parent basedir For all expressions, checks appendix A from "Better builds with maven" ebook. Cheers, Vincent 2006/8/9, Rohnny Moland <[EMAIL PROTECTED]>: Hi there, How can I retrieve the root directory in maven 2 from the pom

Retrieving root directory in maven 2

2006-08-09 Thread Rohnny Moland
Hi there, How can I retrieve the root directory in maven 2 from the pom? ${basedir} was the closest I found, but then I get the path from where maven is running, so this seems to be the module path. I would guess its a simple ${..} I can use.. BTW: Where can I find an overview over all the refer

Re: Conflicting Dependency Version Dilemna

2006-08-09 Thread Craig McClanahan
On 8/9/06, Mike Perham <[EMAIL PROTECTED]> wrote: Not exactly. We have a single parent POM per ear and don't share war/ejbs between ears, yes. But you can still do what you want with a dependencyManagement section in the parent to centralize the version numbers and just have each ear POM pull

Re: Problem with changelog report

2006-08-09 Thread Dennis Lundberg
lore wrote: Hi! I'm trying to generate the changelog report but I've some problems. First I tryed to use the plugin in the last released version: org.codehaus.mojo changelog-maven-plugin but there were problems in the urls pointing to the files in the Subversion repository. Many

RE: Conflicting Dependency Version Dilemna

2006-08-09 Thread Mike Perham
Not exactly. We have a single parent POM per ear and don't share war/ejbs between ears, yes. But you can still do what you want with a dependencyManagement section in the parent to centralize the version numbers and just have each ear POM pull in its required ejbs. Or am I missing something

Re: Converting AppFuse to a Maven 2 Project

2006-08-09 Thread Carlos Sanchez
yes, you need to move them to common On 8/9/06, mraible <[EMAIL PROTECTED]> wrote: I started working on the Maven 2 conversion last night. I'm currently using Carlos's nested recommendation. Here's a screenshot of the current structure: http://raibledesigns.com/repository/images/appfuse2-stru

Re: Converting AppFuse to a Maven 2 Project

2006-08-09 Thread Mike Perham
common sounds right. "Leaf" projects can be jar/war/pom/ear/etc. Aggregating/parent projects must be pom. You can hack a pom to have a binary with the assembly plugin but it's a questionable design IMO. mike mraible <[EMAIL PROTECTED]> wrote on 08/09/2006 11:23:51 AM: > > I started working

Re: module dependencies?

2006-08-09 Thread Dennis Lundberg
Sascha Sadat-Guscheh wrote: hi all.. i'm not sure if this is the correct mailinglist for asking this questions, but i'm pretty desperate so i'll give it a try. This question is best suited for the users list. i'm using the maven-idea-plugin in the version 2.0-beta-1. my config looks like th

RE: Automating install:install-file

2006-08-09 Thread Dave Syer
> From ... "copies the final package to the remote repository for sharing > with other developers and projects" meaning the package (artifact) of a > project That's fine. I would *love* to be able to make the artifact of a project an existing jar file. Instead I have to struggle with tricking m

RE : setting log4j log level for tests

2006-08-09 Thread Olivier Lamy
Try to add it in src/test/resources -Message d'origine- De : Christofer Jennings [mailto:[EMAIL PROTECTED] Envoyé : mercredi 9 août 2006 19:00 À : Maven Users List Objet : setting log4j log level for tests newbee Q: I'm using maven2 and am having trouble figuring out how log4j settings

setting log4j log level for tests

2006-08-09 Thread Christofer Jennings
newbee Q: I'm using maven2 and am having trouble figuring out how log4j settings work. Is there an example pom showing how to set up log4j for tests? I have a log4j.properties in src/main/java and another src/test/java. My pom is based on the web-app archetype but I added the java & test directo

RE: Automating install:install-file

2006-08-09 Thread Edelson, Justin
> I'm trying to use it differently, not incorrectly. The deploy:deploy-file goal is clearly documented as being run from the command line. No mention is made of using it within a POM. See http://maven.apache.org/plugins/maven-deploy-plugin/usage.html. Unfortunately, there's no "usage" page for the

RE: Conflicting Dependency Version Dilemna

2006-08-09 Thread Jörg Schaible
Hi Mike, Mike Perham wrote on Wednesday, August 09, 2006 6:21 PM: > We have come up with a pattern that we feel works pretty well to work > around this. We split our modules into standard jars and "j2ee" type > archives. The standard jars declare their own deps as > normal. The j2ee > jars all

Re: Converting AppFuse to a Maven 2 Project

2006-08-09 Thread mraible
I started working on the Maven 2 conversion last night. I'm currently using Carlos's nested recommendation. Here's a screenshot of the current structure: http://raibledesigns.com/repository/images/appfuse2-structure.png Using this structure, I get errors stating that the "data" and "web" paren

Re: Missing name and url in artifacts from central

2006-08-09 Thread Wayne Fay
The best method would be to contact the various projects and request that they update their poms in their own code repository. If you file these as JIRA MEV issues and someone updates the poms, the changes will be lost in the next version released by the project -- ie someone applies a fix to fop

Does continuum supports UCM Clease case?

2006-08-09 Thread raghurajan . x . gurunathan
Thanks, Raghurajan Gurunathan - This transmission may contain information that is privileged, confidential, legally privileged, and/or exempt from disclosure under applicable law. If you are not the intended recipient, you are hereby notified that any dis

Release Plugin and Parent POM Issues

2006-08-09 Thread Berry, Eric
We have a master POM file that contains common version information, common plug-in settings, and common repository settings. There are also two different profiles in this master POM. One profile is used for development builds. The other profile is used for release builds. All of our build POMs

RE: Conflicting Dependency Version Dilemna

2006-08-09 Thread Mike Perham
We have come up with a pattern that we feel works pretty well to work around this. We split our modules into standard jars and "j2ee" type archives. The standard jars declare their own deps as normal. The j2ee jars all share a parent which overrides all dependency versions so all the wars/e

Missing name and url in artifacts from central

2006-08-09 Thread Dave Syer
I guess I can't be the first person to moan about this, but there are a *lot* of artifacts in the central repo that have no name or url information in their pom (nevermind description, or license). Examples include some "big names" - this is from my dependencies report: Unnamed - fop:fop:jar:0.

Re: castor doclet plugin

2006-08-09 Thread Marco Mistroni
Hello Denis, thx for the reply. that is doing the other way around.. from xml to bean.. i'll have anyway a look regards marco On 8/9/06, Denis Cabasson <[EMAIL PROTECTED]> wrote: mmistroni wrote: > > hi all, > with maven1 i have been usign castordoclet (as part of xdoclet) to > ge

Packaging all modules as Jar

2006-08-09 Thread Tim Patton
I'm trying to package all of the compiled code of several modules into 1 jar but I can't seem to figure out the assembly plugin. I tried including this in my parent pom: .. maven-assembly-plugin 2.0-beta-1 And executing this command line that I found on the maven site somew

RE: Compiler plugin: trying to set compileSourceRoots

2006-08-09 Thread Denis Cabasson
Ian Springer wrote: > > | -Original Message- > | From: Denis Cabasson [mailto:[EMAIL PROTECTED] > | Sent: Wednesday, August 09, 2006 11:07 AM > | To: users@maven.apache.org > | Subject: Re: Compiler plugin: trying to set compileSourceRoots > | > | Alexander Hars wrote: > | > > | > Hi,

RE: Compiler plugin: trying to set compileSourceRoots

2006-08-09 Thread Ian Springer
| -Original Message- | From: Denis Cabasson [mailto:[EMAIL PROTECTED] | Sent: Wednesday, August 09, 2006 11:07 AM | To: users@maven.apache.org | Subject: Re: Compiler plugin: trying to set compileSourceRoots | | Alexander Hars wrote: | > | > Hi, | > | > I am trying to specify multiple s

build happening twice

2006-08-09 Thread raghurajan . x . gurunathan
Hi All I have multimodule project with maven everthing seems to be working fine,but one thing I will create ear from my project, then i created a profile which is activated by a property like, so when that property(deployto.wlserver)is set to true it will deploy the created ear into weblogic s

Re: [ANN] Proximity Demo Site

2006-08-09 Thread Jeff Jensen
Thank you for continuing to make and improve such a fine product! We are happy with the quality of work, clarity of docs, and ease of installation and use. Quoting Tamás Cservenák <[EMAIL PROTECTED]>: > Hi all, > > Proximity demo site started to work on address: > > http://proximity.abstracth

Re: castor doclet plugin

2006-08-09 Thread Denis Cabasson
mmistroni wrote: > > hi all, > with maven1 i have been usign castordoclet (as part of xdoclet) to > generate castor mapping files for my classes... > it looks like it is not in m2 xdoclet plugin.. > > am i wrong or is there a different solution for generating castor mapping > files? > > than

castor doclet plugin

2006-08-09 Thread Marco Mistroni
hi all, with maven1 i have been usign castordoclet (as part of xdoclet) to generate castor mapping files for my classes... it looks like it is not in m2 xdoclet plugin.. am i wrong or is there a different solution for generating castor mapping files? thanks in advance and regards marco

Re: Compiler plugin: trying to set compileSourceRoots

2006-08-09 Thread Denis Cabasson
Alexander Hars wrote: > > Hi, > > I am trying to specify multiple source locations for the compiler-plugin > (goal: test-compile). How do I accomplish that? > > I have tried to set the compileSourceRoots in the configuration of the > compiler plugin: > > src/test/main;src/test2/main > >

[ANN] Proximity Demo Site

2006-08-09 Thread Tamás Cservenák
Hi all, Proximity demo site started to work on address: http://proximity.abstracthorizon.org:12000/px-webapp This site will show the current "edge" development In case site is down, I beg for your patience, it will mean that the site is updating. NOTE: To prevent using this site as rep

RE: Conflicting Dependency Version Dilemna

2006-08-09 Thread Ruel Loehr
Any comment from the maven devs? This problem seems to be affecting more and more people. Ruel Loehr JBoss QA -Original Message- From: Jörg Schaible [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 09, 2006 1:57 AM To: Maven Users List Subject: RE: Conflicting Dependency Version D

RE: Automating install:install-file

2006-08-09 Thread Dave Syer
> It sounds to me like you're using the deploy:deploy-file goal > incorrectly. I'm trying to use it differently, not incorrectly. I don't want to write a DOS .bat script to do this because it won't work on a UN*X system. The idea is that I should be able to run "mvn deploy" from my project root

Compiler plugin: trying to set compileSourceRoots

2006-08-09 Thread Alexander Hars
Hi, I am trying to specify multiple source locations for the compiler-plugin (goal: test-compile). How do I accomplish that? I have tried to set the compileSourceRoots in the configuration of the compiler plugin: src/test/main;src/test2/main But I always get an error: Cannot override re

RE: [SOLVED] RE: [M2] Intercept the workings of EJB Plugins (was RE: [m2] ant run plugin )

2006-08-09 Thread Peter . Pilgrim
> -Original Message- > From: Pilgrim, Peter ==== > > [install] The EJB plugin now executes agains and installs the EJB-JAR > into the M2 repository. > > Job done. > > I will document this craziness on my blog > http://jroller.com/page/peter_pilgrim > asap because this was too da

Problem with changelog report

2006-08-09 Thread lore
Hi! I'm trying to generate the changelog report but I've some problems. First I tryed to use the plugin in the last released version: org.codehaus.mojo changelog-maven-plugin but there were problems in the urls pointing to the files in the Subversion repository. Many of our reposi

Re: Maven 1.1-beta3 & maven-artifact-plugin 1.8

2006-08-09 Thread Steve Molloy
Sure, just tried it, but the build failed with a ClassNotFoundException for AbstractSshWagon... One thing weird is that the tar and the md5 don't have the same dates (July 18th vs August 1st...). It was in 20060630 right? (used http://people.apache.org/~aheritier/maven/1.X/snapshots/20060630/maven-

[OT][ANN] JAVAWUG BOF XXI / 5th Sept 2006 @ 18:30 / SkillsMatter

2006-08-09 Thread Peter . Pilgrim
Hi All I would like announce the twentieth first birds-of-a-feather (BOF 21) of the Java Web Users Group. The event will take place on Tuesday 5th September 2006, starting from 18:30 at Skills Matter Limited 1 Sekforde Street LONDON EC1R 0BE Map: mapPhone:

RE: Automating install:install-file

2006-08-09 Thread Edelson, Justin
> One last question: how do I switch off the default behaviour of "mvn deploy"? I want to only run the deploy:deploy-file goal in the deploy > phase, and not try to deploy my empty pom with no artifacts (which I am using to configure the deploy-file). Hmmm. It sounds to me like you're using the d

Re: Maven 1.1-beta3 & maven-artifact-plugin 1.8

2006-08-09 Thread Arnaud HERITIER
Steve, Even if you don't use this snapshot, can you test it to tell us if this one works also for you. We are searching what we changed since this snapshot and the official beta 3 to fix it in the RC1. We are trying to produce the RC1 at the end of the month. If the returns about it are good,

RE: Maven 1.1-beta3 & maven-artifact-plugin 1.8

2006-08-09 Thread Steve Molloy
Thanks, I guess I'll stick with 1.0.2 until the next release, hoping this issue will be fixed. Is there any ETA set for the next 1.1 release yet? Steve On Wed, 2006-09-08 at 08:23 -0500, Jeff Jensen wrote: > Hi Steve, > > Yes, this is an issue I encountered as well. I have found that the 6/30 >

Re: Re: Flat directory structure and Eclipse

2006-08-09 Thread jan_bar
Thanks Stefan for your time. "Stefan Magnus Landrø" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > The eclipse plugin is included by default > try running mvn eclipse:eclipse. It will generate the project/classpath > files for you automatically. > > You can of course set up the proj

RE: Maven 1.1-beta3 & maven-artifact-plugin 1.8

2006-08-09 Thread Jeff Jensen
Hi Steve, Yes, this is an issue I encountered as well. I have found that the 6/30 1.1-beta3-SNAPSHOT does not have this problem, but every release since then does. See 20060630/ here: http://people.apache.org/~aheritier/maven/1.X/snapshots/ We are researching the problem to find a fix. In th

Re: Re: Flat directory structure and Eclipse

2006-08-09 Thread Stefan Magnus Landrø
The eclipse plugin is included by default try running mvn eclipse:eclipse. It will generate the project/classpath files for you automatically. You can of course set up the projects manually, but it's a lot of work. I typically use the follwing setup: c:\projects c:\projects\myproject\ c:\proje

Maven 1.1-beta3 & maven-artifact-plugin 1.8

2006-08-09 Thread Steve Molloy
Hi, I just upgraded from maven 1.0.2 to 1.1-beta3, and got the maven-artifact-plugin 1.8 along with it. But Now I can't deploy any artifacts because scp refuses my host key, while scpexe just doesn't do anything at all, but doesn't complain... So, I've reverted back to 1.0.2 for n

Re: Flat directory structure and Eclipse

2006-08-09 Thread jan_bar
Thanks Stefan, I don't use the eclipse plugin, but it makes no difference. So, if I understand you well, you have the structure recomended by Maven doc outside of Eclipse workspace and use Eclipse links to each fo the EAR/EJB/WAR subfolders? Are there any troubles with this setup? Jan > Hi Jan,

Re: Flat directory structure and Eclipse

2006-08-09 Thread Stefan Magnus Landrø
Hi Jan, running the maven eclipse plugin, you won't get any project file for the top level (myProject / pom.xml). Also, I recomment using a workspace location different from where you keep your source code (using eclipse's import existing project feature) HTHAB, Stefan news <[EMAIL PROTECTED

Flat directory structure and Eclipse

2006-08-09 Thread jan_bar
Hi, The flat directory is recommended for J2EE projects: myProject / pom.xml | |-- EAR / pom.xml | |-- EJB / pom.xml | |-- WEB / pom.xml This structure is not entirely "flat" because of the root myProject / pom.xml. It is not clear to me how this structure fits into Eclipse workspace. Do you hav

Re: Customize site Project Reports menu labels

2006-08-09 Thread Vincent Siveton
It is not possible yet. See: http://jira.codehaus.org/browse/MPIR-35 Cheers, Vincent 2006/8/9, lore <[EMAIL PROTECTED]>: Hi! I need to customize the labels of the Project Reports menu entries in the Maven2 site. How can I do? Thanks, Lorenzo -- View this message in context: http://ww

RE : invocation of external commands

2006-08-09 Thread Olivier Lamy
Have a look : http://mojo.codehaus.org/exec-maven-plugin/ -Message d'origine- De : Adrian Shum [mailto:[EMAIL PROTECTED] Envoyé : mercredi 9 août 2006 12:32 À : users@maven.apache.org Objet : invocation of external commands Hi All, I just wonder if there is any plugins for me to execut

Re: PMD report plugin fails the build

2006-08-09 Thread Stephen Duncan
Have you run with -U to get the latest version of the plugin? This used to happen to me, but stopped recently after running "mvn site -U" -Stephen On 8/9/06, Ciprian Duma <[EMAIL PROTECTED]> wrote: It's in the reports section. But I think the plugin calls first pdm-check and I can't tell it no

Re: PMD report plugin fails the build

2006-08-09 Thread Ciprian Duma
It's in the reports section. But I think the plugin calls first pdm-check and I can't tell it not to fail (or it ignores the option). On 8/9/06, Denis Cabasson <[EMAIL PROTECTED]> wrote: Add the pmd plugin to your reporting section instead of your build section, and it shouldn't breal the build

Customize site Project Reports menu labels

2006-08-09 Thread lore
Hi! I need to customize the labels of the Project Reports menu entries in the Maven2 site. How can I do? Thanks, Lorenzo -- View this message in context: http://www.nabble.com/Customize-site-Project-Reports-menu-labels-tf2077958.html#a5723454 Sent from the Maven - Users forum at Nabble.

Need help regarding the Changelog plugin.

2006-08-09 Thread Abhijit Diwan
Hi all I am trying to get changelog for my project and the mvn site command generates empty changelog output. Following is the scm section of my pom.xml scm:perforce:@fish:1678://EJB/ejb-dev/MavenCo deline and the plugin section I have

invocation of external commands

2006-08-09 Thread Adrian Shum
Hi All, I just wonder if there is any plugins for me to execute some external commands, at least some java applications, during my compilation process? Currently I am using the Ant Run plugin and do those things using ant tasks to execute those commands, is it the only way or there are some other

Re: PMD report plugin fails the build

2006-08-09 Thread Denis Cabasson
Add the pmd plugin to your reporting section instead of your build section, and it shouldn't breal the build anymore (but still generate the report). Denis. Ciprian Duma wrote: > > How can I configure the PMD plugin not to fail the build when > generating the report? I tried passing the parame

PMD report plugin fails the build

2006-08-09 Thread Ciprian Duma
How can I configure the PMD plugin not to fail the build when generating the report? I tried passing the parameter "failOnViolation" with value "false" but it's ignored. And I dont want to configure this plugin in the "build" section, it should be called only when is site is generated. The classe

RE: Cargo-plugin 0.3-SNAPSHOT problem?

2006-08-09 Thread Vincent Massol
Hi Michael, Please post to the cargo lists. When you post there please be sure to post your effective pom (mvn help:effective-pom). Also you shouldn't have both start and deploy goals as start does static deployment. Check the online docs. Let's continue this discussion on the cargo list. Thanks

RE: cargo deploy jboss datasource-ds.xml file?

2006-08-09 Thread Vincent Massol
Hi James, You should post to the cargo lists. You'll probably get more answers there. If you post there please be sure to tell us if you're really talking about an oracle-ds.xml file or some jboss ds file. Thanks -Vincent > -Original Message- > From: James Richards [mailto:[EMAIL PROTECT

Re: xdoclet- mvn2 dilemma when generating sources / solved

2006-08-09 Thread Marco Mistroni
hi all, sorry, myfault.. shouldnt have bothered the list but done some research on my own instead. Found a JIRA, solution is to use @ejb:ejb-external-ref sorry for bothering regards marco On 8/9/06, Marco Mistroni <[EMAIL PROTECTED]> wrote: hi all, i m currently using xdoclet for generating

xdoclet- mvn2 dilemma when generating sources

2006-08-09 Thread Marco Mistroni
hi all, i m currently using xdoclet for generating sources for my EJBs.. problem is, my project is a Multi-Project. its structure is as follows MyProject | EJB1 | EJB2 i m generating sources for both EJB1 project and EJB2 project issue is that one of the beans in EJB2 has to

RE: Automating install:install-file

2006-08-09 Thread Dave Syer
> I would disagree that this is somehow harder than what you're talking > about. You are correct, it is at least equally hard. However I have made some progress though with the deploy plugin. It seems there is some duplication of effort between deploy:deploy-file and install:install-file. Als

Re: Continuum on Tomcat?

2006-08-09 Thread Thomas Van de Velde
Thanks Emmanuel. I think that's a great thing as that will not force infrastructure decisions on the user. Thomas On 8/9/06, Emmanuel Venisse <[EMAIL PROTECTED]> wrote: It will be possible in 1.1 because it will be a webapp. Emmanuel Thomas Van de Velde a écrit : > Hi, > > Is it possible to