Deploy to multiple repositories

2006-07-17 Thread Raphael Neve
Hi there, When I deploy my project, I want several things to happen : 1) Commit source code to SVN 2) Send packaged JAR (containing class files) to remote server 3) Send the same packaged JAR to a local server for archiving. How is this possible with Maven 2 ? From the documentation it seems

Re: [m2] dependency license warning

2006-07-17 Thread gredler
Hi, Thanks for your response. The dependency's scope is provided, so that if the user supplies the relevant classes at runtime, extra features are enabled dynamically. The project is Tapestry, but the new component will be added to the contrib module, not the core module. Since it is a new

Re: Deploy to multiple repositories

2006-07-17 Thread Ciprian Duma
you connect the various plugins to the deploy phase: scm - for commit deploy - for deploying on a maven repository ant plugin that calls ftp/scp for archiving for each plugin, executions can be configured and there you can configure them with different parameters. Hope it helps, Ciprian On

Re: [maven 2] duplicate class compilation error

2006-07-17 Thread Tung Nguyen
My poms: Parents pom ?xml version=1.0 encoding=UTF-8? xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd; modelVersion4.0.0/modelVersion groupIdcom.gemplus.otacs/groupId

Maven 2 and JAR deployment

2006-07-17 Thread Raphael Neve
Hi again, Another question from a newbie :-) My project uses xmlrpc, so I declared it as a dependency in my pom.xml. The project compiles with mvn compile and when I do mvn package I get my JAR file corresponding to the project. The JAR file does not contain my xmlrpc-2.0.jar, which is what I'd

Handling Maven and SCM

2006-07-17 Thread Raphael Neve
Hi there, I have a project that I am starting with Maven 2. I have the src and target directories at the top level of my dir structure. My question relates to the good practises in terms of SCM and in particular SVN managment. Currently, I have imported my whole project directory into the

Re: Deployment to SCP server (Maven2)

2006-07-17 Thread Raphael Neve
Here's some more info on this problem : I tried running mvn -X deploy, here's the relevant portion : [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-deploy-plugin:2.2.1:deploy' -- [DEBUG] (f) artifact = Cactus:Cactus:jar:0.0.2 [DEBUG] (f) attachedArtifacts = [] [DEBUG] (f)

Re: Maven 2 and JAR deployment

2006-07-17 Thread Charlie Groves
mvn deploy just deploys the current project. If you want to deploy a jar you've got in your local repo, you'll want to use deploy:deploy-file. Check out http://maven.apache.org/guides/mini/guide-3rd-party-jars-remote.html Hope this helps, Charlie On 7/17/06, Raphael Neve [EMAIL PROTECTED]

Re: Handling Maven and SCM

2006-07-17 Thread Charlie Groves
Yep, I'd never add target to my SCM system. It's supposed to be created from scratch by the build, and is wiped out by mvn clean. I add target to my global-ignores in ~/.subversion/config so it doesn't show up with a ? all the time. If you don't want to ignore target directories altogether,

Re: Deployment to SCP server (Maven2)

2006-07-17 Thread ben short
Are you sure thats the correct url scp:myserver.microtec.fr/deploy? If you use putty to login to the server and you type /depoly at the prompt do you go to a directory? On my server the url is scp:X.X.X.X/var/mvn/deployed Ben On 7/17/06, Raphael Neve [EMAIL PROTECTED] wrote: Here's some more

Re: Handling Maven and SCM

2006-07-17 Thread ben short
Before for import yor project you should do a mcn clean to remove the target directory. You dont want this in subversion. Also the convention with subversion is that you have the follwoing three directories in the root of your repo. tags branches trunk You need to put your project into the

[M2] Maven Deployment Using Cargo To WebSphere

2006-07-17 Thread Peter . Pilgrim
Hi I have just reading the documentation looking for remote deployment to IBM WebSphere at http://cargo.codehaus.org/Container and much to my surprise Does Cargo support Websphere deployment? Or how do you perform deployment to Websphere? Thanks -- Peter Pilgrim UBS Investment Bank, IT

Re: Spring 2.0, hibernate/ejb 3

2006-07-17 Thread Markus Wolf
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hibernate annotations have a dependency on the javax.persistence jar, which of course isn available but i got the correct iteration (the one shipped in hibernate-annotations' lib dir for 3.0beta2 and placed it in my private repository.. so that

RE: [M2] Maven Deployment Using Cargo To WebSphere

2006-07-17 Thread Vincent Massol
Hi Peter, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: lundi 17 juillet 2006 10:40 To: users@maven.apache.org Subject: [M2] Maven Deployment Using Cargo To WebSphere Hi I have just reading the documentation looking for remote deployment to IBM

Re: maven site broken under jdk1.4

2006-07-17 Thread dcabasson
Looks like the correct url for commons-logging api is http://jakarta.apache.org/commons/logging/apidocs/package-list rather than http://jakarta.apache.org/commons/logging/api/package-list But javadoc is supposed to handle that Maybe patching the sql plugin would be fine :) Denis. dan

[M2] Assembly: scope of dependencies

2006-07-17 Thread Sebastien Pennec
Hello, I'm having a small problem with the assembly plug-in. Here's a part of my pom.xml: dependencies dependency groupIdsome.group.id/groupId artifactIdcore/artifactId version0.1-SNAPSHOT/version scopecompile/scope

Building multi modules individually and Copying artifacts

2006-07-17 Thread Kapil Gupta\(CT\)
Hi, Am using tomcat to run my application which is build on spring framework. My application consists of several modules with some dependencies on each other. Lets say module A is independent, module B depends on A and module C depends on A. I wanted my build process to generate and copy all

proximity vs maven-proxy

2006-07-17 Thread Carlos Sanchez
Hi, I've hit a problem with maven-proxy and I'd like to know if any other proxies, like proximity can solve it. Let's say you proxy ibiblio and the apache snapshot repo, then there's a conflict between maven-metadata files coming from both places, which is a big problem for plugins, if the

Re: unit test works in Eclipse but fails in maven

2006-07-17 Thread Jimisola Laursen
Hi! I had a similar problem that was because of assertions. Assertions where enabled when running test from console Maven, but disabled when running tests using Eclipse. Regards, Jimisola -- View this message in context:

Re: Building multi modules individually and Copying artifacts

2006-07-17 Thread dcabasson
You just have to use the war packaging: http://maven.apache.org/guides/mini/guide-webapp.html And Maven will do most of the heavy work for you (building each separate jar, and assembling all of it in your war file). If you want to deploy this war to a Tomcat Container, just have a look at the

Re: [m2] Looking for javadoc warning report

2006-07-17 Thread Rob Dickens
I also tried this, but unless I overlooked them--there's a lot to wade through--the maven-checkstyle-plugin does not report the same warnings that the javadoc commandline tool reports. E.g. it doesn't tell me about [EMAIL PROTECTED] com.lafros.MissingClass} in my javadoc comments. The

Re: [M2] Assembly: scope of dependencies

2006-07-17 Thread Sebastien Pennec
Looks like updating to version 2.1 of the assembly plug-in corrected the problem... -- Sebastien Pennec [EMAIL PROTECTED] LOGBack: the generic, reliable, fast and flexible logging library for Java. - To unsubscribe, e-mail:

System Properties in POM

2006-07-17 Thread Jimisola Laursen
Hi! Is it possible to only input system property and a suffix/prefix when the property exists? I want to setup version/version using properties. These properties are used in other places as well (e.g. in templates) when we need to know major, minor etc individually and just not as a whole.

Re: How to be compatible with both M1 and M2 repos

2006-07-17 Thread Carlos Sanchez
All requests to the m1 central repo www.ibiblio.org/maven are redirected to the m2 repo transparently www.ibiblio.org/maven2, and all uploads processed in the m2 repo, with poms from m1 converted to m2 format, so I don't know what the problem can be. On 7/16/06, Ceki Gülcü [EMAIL PROTECTED]

RE: [M2] Maven Deployment Using Cargo To WebSphere

2006-07-17 Thread Peter . Pilgrim
-Original Message- From: Vincent Massol [mailto:[EMAIL PROTECTED] Sent: 17 July 2006 09:59 To: 'Maven Users List' Subject: RE: [M2] Maven Deployment Using Cargo To WebSphere Hi Peter, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent:

Re: proximity vs maven-proxy

2006-07-17 Thread Tamás Cservenák
Hi Carlos, This issue is not handled directly in Proximity. In Proximity, the order of scanned repos is defined by the order of injecting them into Proximity bean: bean id=proximity class=hu.ismicro.commons.proximity.base.ProximityImpl init-method=initialize property name=indexer

Re: proximity vs maven-proxy

2006-07-17 Thread Tamás Cservenák
Just to add some appendix to my previous letter, to make myself clearer: 1. Proximity serves by love at first sight (could not find better phrase) - if the repo (scanned in proper order) can serve the requested URL, wins, search stops 2. there is no merge operation defined at ARTIFACT level,

how to copy resources while building war

2006-07-17 Thread AK
Hi, I have a multimodule project, all modules' config properties are stored within each module's directory. For example, kernel module has its props in kernel/config folder. I have a web module, which uses all other modules, and all their properties must be stored within web-inf folder as

Is maven seeing another jar?

2006-07-17 Thread Jeff Mutonho
One of my projects module is failing to build with the message : D:\M2-WORK\eportal-services\src\za\co\mycompany\portal\services\PersonServiceImpl.java:[111,69] cannot find symbol symbol : method getClarifyAccountKey() location: class za.co.mycompany.portal.Organisation This class Organisation

Re: Launch application through maven 2.x

2006-07-17 Thread Fred
Thanks all for your help. Fred. On Friday 14 July 2006 15:48, Toli Kuznets wrote: Fred, I've had some limited success with the exec-maven plugin. If you only need to launch a java app with maven and can specify all configs in your pom, then it works great. However, if you thought that you

issue with multimodule

2006-07-17 Thread Vinay Kumar
Hi All, I have Multi-module project. When I upload parent pom , it loads all module properly. and on doing build with parent pom one of module built successfully. But other module and parent module are not. When I see result of submodule build it shows:

Re: Cobertura reports 0% for some classes

2006-07-17 Thread achapman
I managed to fix it by specifying the latest version of surefire - 2.2. It looks like the default version that maven 2.0.4 uses is 2.0 which does not support the forkMode setting. According to comments in the maven-cobetura-plugin SVN the cause of this problem is that the cobertura.ser file is

Re: Maven book: feedback

2006-07-17 Thread Michael . Wiles
Have been following this thread with interest. One of my biggest issues with maven 2 is that the documentation is very poor. Yes, I know there is a book on it, but I did not find the book very helpful... The maven book takes a far too high level approach and does not give detailed

Re: how to copy resources while building war

2006-07-17 Thread dcabasson
Hi, Why is having your property files inside the jar annoying? You can easily access them, and if they relates only to a single module - which seems to be the cas, since they are stored within each of your modules - it's quite consistent to get them in this module's jar. And if configuration

RE: how to copy resources while building war

2006-07-17 Thread Maximilian . Antoni
Hi, I had a similar problem and solved it by packaging the submodule resources as a war file too. Next, let the war plugin overlay that war with the top-level war file. In my case the submodule is included by dependency and I had to add a typewar/type to the dependency tag to make that work. I'm

Re: Is maven seeing another jar?

2006-07-17 Thread dcabasson
Hi, Maybe you have some type worries. Seems to me you're looking for a za.co.mycompany.portal, while groupId is za.co.mycompany.eportal. That could be your point. Denis. Jeff Mutonho wrote: location: class za.co.mycompany.portal.Organisation

RE: Maven and SVN

2006-07-17 Thread HUGOT Franck
OK, I try this but it seems that https plugin is not available in maven 2 repositoty? Does anybody know where I can find this plugin? (I use https for svn). Thanks. ~ Franck HUGOT SOFINCO - Groupe

Re: Is maven seeing another jar?

2006-07-17 Thread Jeff Mutonho
Maybe you have some type worries. Seems to me you're looking for a za.co.mycompany.portal, while groupId is za.co.mycompany.eportal. Thanks for your response .You might have misunderstood my question.za.co.mycompany.portal is just the name of the package( in the code) where the class

RE: Problem w/M2 plugin--- Fixed

2006-07-17 Thread Matilda Robert
Hi, I figured out the problem with the unable to read file error. I realized that my file wasn't corrupted; I was just using an out-of-date maven 2.0 cargo plugin. I made the following change to my pom.xml file after making a copy of my old codehaus directory; I changed:

Re: Is maven seeing another jar?

2006-07-17 Thread dcabasson
-- View this message in context: http://www.nabble.com/Is-maven-seeing-another-jar--tf1954355.html#a5360675 Sent from the Maven - Users forum at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Is maven seeing another jar?

2006-07-17 Thread dcabasson
http://maven.apache.org/ref/2.0.3-SNAPSHOT/maven-model/maven.html#class_project groupId : A universally unique identifier for a project. It is normal to use a fully-qualified package name to distinguish it from other projects with a similar name (eg. org.apache.maven). It's common practice

RE: Maven and SVN

2006-07-17 Thread Matilda Robert
Hi Hugot, The commands are sort of confusing because many of the svn commands don't work in mvn. I do the svn command do the following: mvn scm:checkin –Dmessage=“Type in whatever message that you want here to add to the svn message log” FYI: Make sure you are checking in the file in that

Re: Maven book: feedback

2006-07-17 Thread Jeff Mutonho
Vincent , I guess the lack of flow is what I perhaps was trying to illustrate in our chat the other day.To a total newbie , things get pretty confusing as to how to put it all together in order to have a working build environment.I wouldn't be a good thing for people to be scared away from M2

extracting zip file?

2006-07-17 Thread Kapil Gupta\(CT\)
Hi, Is there any way to extract zip file thru a pom file? Thanks, Kapil

Package war without web.xml

2006-07-17 Thread Lucas Gonçalves
How can i package a war file without web.xml? [INFO] [ERROR] BUILD ERROR [INFO] [INFO] Error assembling WAR: Deployment descriptor:

jetty6-plugin, excluding slf4j dependency

2006-07-17 Thread David Smiley
Hello everyone. I've been using Jetty in Maven (which is pretty cool, by the way). However there are some classloading issues that occur while running under JDK 1.4, and so I would like to exclude the SLF4J jars from the jetty plugin. Try as I might (and Jan Bartel too), I can't make this

RE: Maven book: feedback

2006-07-17 Thread Matilda Robert
Hi, I agree. I have been working with Maven 2.0 for a little over three months now and reading the book is extremely complex. I use the text as a guide and post my questions to the user groups and find results either here or online through other resources. I look to a variety of maven 2.0 web

Re: Maven and SVN

2006-07-17 Thread Emmanuel Venisse
Maven-scm used by scm plugin supports https protocol for svn connection mvn scm:checkout -DconnectionUrl=scm:svn:https://your_url Emmanuel HUGOT Franck a écrit : OK, I try this but it seems that https plugin is not available in maven 2 repositoty? Does anybody know where I can find this

RE: Maven and SVN

2006-07-17 Thread HUGOT Franck
I try this but it says that it can not find svn plugin ! However maven has succeeded to download the scm plugin (at first time). ~ Franck HUGOT SOFINCO - Groupe Credit Agricole Service Urbanisation Des

Re: issue with multimodule

2006-07-17 Thread Emmanuel Venisse
you don't have a pom.xml file in the working directory of your module. I think the scm url of your module is wrong, it probably use a parent directory of your module and not the correct module directory in your scm. Emmanuel Vinay Kumar a écrit : Hi All, I have Multi-module project. When I

RE: extracting zip file?

2006-07-17 Thread Adam Leggett
Im not aware of a dedicated zip/unzip plugin. You could try the dependency plugin (dependency:unpack) http://mojo.codehaus.org/dependency-maven-plugin/ if the zip is listed as a dependency and this fits with what you want. Otherwise I'd suggest binding an execution of the maven-antrun-plugin to

Re: Cobertura reports 0% for some classes

2006-07-17 Thread Roy van der Kuil
I had the same problem for projects that I have 'moved' from ant to maven (2). The test sources where in the same src directory as the main sources (I only had one src path). After creating 2 source trees (according to mavens best practice) it works like a charm.

RE: Maven and SVN

2006-07-17 Thread HUGOT Franck
Ok it works now. Thanks, I miss the scm:svn:https ! ~ Franck HUGOT SOFINCO - Groupe Credit Agricole Service Urbanisation Des Développements DSI/PAT/DAOS/SUDD Tel : (+33) 01 60 76 54 66 [EMAIL PROTECTED]

RE: extracting zip file?

2006-07-17 Thread Kapil Gupta\(CT\)
Thanks for your reply Adam. Actually I want to extract tomcat server which is saved in zip format in my cvs repository and then copy my war file in the tomcat webapps directory. Regards, Kapil -Original Message- From: Adam Leggett [mailto:[EMAIL PROTECTED] Sent: Monday, July 17, 2006

Re: extracting zip file?

2006-07-17 Thread dcabasson
You can have a look at the antrun plugin: http://maven.apache.org/plugins/maven-antrun-plugin/ It can easily unzip a file. But the real question is: why would you need to extract a file? Denis. Kapil Gupta(CT) wrote: Hi, Is there any way to extract zip file thru a pom file? -- View

Re: Maven book: feedback

2006-07-17 Thread Brett Porter
All, While I appreciate the feedback, can I offer some suggestions on the most effective way to give it... Regarding the book from Mergere: - send book feedback to [EMAIL PROTECTED] (same as for submitting errata, see the front of the book) Regarding the separate Maven documentation efforts: -

RE: extracting zip file?

2006-07-17 Thread dcabasson
Have a look at the cargo plugin, it is just the thing you're trying to do: http://cargo.codehaus.org/Maven2+plugin Cheers! Denis. Kapil Gupta(CT) wrote: Thanks for your reply Adam. Actually I want to extract tomcat server which is saved in zip format in my cvs repository and then copy my

Re: Package war without web.xml

2006-07-17 Thread dcabasson
Well, most probably, you don't :) A webapp has to have a web.xml file. So you're probably trying to tweak Maven in a way he doesn't want to... What are you trying to do? Denis. Lucas Gonçalves-2 wrote: How can i package a war file without web.xml? -- View this message in context:

Re: Accessing the build number

2006-07-17 Thread Lukasz Szelag
I had a similar problem (trying to access the artifact timestamp, which includes the build number). The following is from my Mojo: /** * The project artifact. * * @parameter expression=${project.artifact} * @required * @readonly */

Re: [maven 2] duplicate class compilation error

2006-07-17 Thread dan tran
It must have duplicate class somewhere in your source tree google duplicate class: maven I found some discusssion similar to your problem -D On 7/17/06, Tung Nguyen [EMAIL PROTECTED] wrote: My poms: Parents pom ?xml version=1.0 encoding=UTF-8?

RE: extracting zip file?

2006-07-17 Thread Adam Leggett
Given your requirements around tomcat id recommend a look at cargo http://cargo.codehaus.org/ Cargo will (via your pom configuration) download a binary version of tomcat, start it, deploy your war, run your tests and finally stop tomcat. Adam -Original Message- From: Kapil Gupta(CT)

Find POM for artifact

2006-07-17 Thread christian domsch \(innoWake gmbh\)
Hi all, I have a mojo that has to analyse its artifacts and the corresponding poms. I aquire the list of artifacts from a parameter and now I want to read the pom for each artefact. Since I can get the file for an artefact, getting the pom is fairely easy, since I only have to change the file

SCM with Maven philosophy

2006-07-17 Thread HUGOT Franck
Hello, I'd like to know what is the philosophy of using maven2 scm plugin. I put my pom.xml at the root dir of my project. Projet under SVN : MyProject/Pom.xml MyProject/Src/main/java/... ... So with the maven checkout command (mvn scm:checkout...), this pom is located

[M2] Difference between 'mvn test' and 'mvn install'

2006-07-17 Thread Jakub Pawlowicz
Hi, Does anybody know what's the difference between 'mvn test' and 'mvn install' in the means of used classpath? If I run a 'mvn test' in a multimodule project, the other modules are included to the classpath and my tests run fine. However if I run 'mvn install' some tests fail, because a

Re: SCM with Maven philosophy

2006-07-17 Thread dan tran
The main purpose if scm:checkout is to allow user to fetch the source base on a scmurl input ( thru -DconnectionUrl), However it also can pickup the connectionUrl in the pom.xml of the execution directory ( your pom). Because of that and to work for both cases, your source files are checked out

Maven 2 Newbie question - trouble running tests with Spring/Log4J

2006-07-17 Thread Deepak Chadha
Hi, I am attempting to set up maven to compile and run my junit tests for me. Background - I installed maven2 successfully (meaning that I ran the built in test correctly). - I have a project which uses Spring and Log4J - I am able to compile my main source and my test source files - I am not

RE: [M2] Difference between 'mvn test' and 'mvn install'

2006-07-17 Thread Jörg Schaible
Jakub Pawlowicz wrote on Monday, July 17, 2006 5:14 PM: Hi, Does anybody know what's the difference between 'mvn test' and 'mvn install' in the means of used classpath? If I run a 'mvn test' in a multimodule project, the other modules are included to the classpath and my tests run fine.

Re: [m2] dependencyManagement question ?

2006-07-17 Thread David Smiley
Is there a reason why versions specified in dependencyManagement only apply to dependencies which don't have a version specified? In other words... why not have it specify the dependency regardless of whatever is specified in some child pom? The use case here is for 3rd party pom's transitively

RE: SCM with Maven philosophy

2006-07-17 Thread HUGOT Franck
In case of integration, the flow is checkout, compile, ... , and not commit (sorry for the mistake) but tagging a release for example. Today I use : 1/ svn checkout (or export) 2/ mvn compile, package, deploy, site, etc... 3/ svn tag How could I do this with maven2 ? (without continuum). I

RE: Maven 2 Newbie question - trouble running tests with Spring/Log4J

2006-07-17 Thread Maximilian . Antoni
Try putting your log4j.properties in src/test/resources too. Regards Max -Original Message- From: Deepak Chadha [mailto:[EMAIL PROTECTED] Sent: 17 July 2006 16:33 To: users@maven.apache.org Subject: Maven 2 Newbie question - trouble running tests with Spring/Log4J Hi, I am attempting

[m2] xdoclet with MDBs

2006-07-17 Thread ertnutler
hey, all. i have an EJB project that builds an MDB with m2. my problem is that when i use xdoclet in conjunction with this project, it doesn't generate the appropriate deployment descriptors when my MDB bean class inherits from a superclass. when i remove the extends clause and replace it with

Re: SCM with Maven philosophy

2006-07-17 Thread dan tran
it is the work if maven-release-plugin -Dan On 7/17/06, HUGOT Franck [EMAIL PROTECTED] wrote: In case of integration, the flow is checkout, compile, ... , and not commit (sorry for the mistake) but tagging a release for example. Today I use : 1/ svn checkout (or export) 2/ mvn compile,

Re: [m2] xdoclet with MDBs

2006-07-17 Thread Kenney Westerhof
On Mon, 17 Jul 2006, ertnutler wrote: Hi, The problem is that xjavadoc (the source scanner for xdoclet) only checks sources that are present. So you have to add the 'implements ...' directly to the bean classes, otherwise xjavadoc won't recognize them as bean classes. There's one solution

Re: Executing java code during build

2006-07-17 Thread Alexander Rau
Yeah, in principle you are absolutely right. However I just need to execute the main method of a specific class without any additional arguments. That's a pretty generic functionality and the exec plugin proposed by Tim Kettler does the job. I tried to write my own plugin and so far it could

Re: Executing java code during build

2006-07-17 Thread Alexander Rau
Tnx for the hint ! That's what I need. Regards, Alex Tim Kettler wrote: Hi, perhaps the exec-maven-plugin [1] is what you want? -Tim [1] http://mojo.codehaus.org/exec-maven-plugin/ Alexander Rau schrieb: Hi all, I need to run a custom java class for generating some stubs. How can I

Re: Executing java code during build

2006-07-17 Thread Kenney Westerhof
On Mon, 17 Jul 2006, Alexander Rau wrote: Yeah, in principle you are absolutely right. However I just need to execute the main method of a specific class without any additional arguments. That's a pretty generic functionality and the exec plugin proposed by Tim Kettler does the job. Ah ok..

Re: Spring 2.0, hibernate/ejb 3

2006-07-17 Thread Josh Long
Ah so.. i'll have a whack at that, thank you both so much! Josh On 7/17/06, Markus Wolf [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hibernate annotations have a dependency on the javax.persistence jar, which of course isn available but i got the correct iteration

Re: Spring 2.0, hibernate/ejb 3

2006-07-17 Thread Carlos Sanchez
it's already in ibiblio On 7/17/06, Josh Long [EMAIL PROTECTED] wrote: Ah so.. i'll have a whack at that, thank you both so much! Josh On 7/17/06, Markus Wolf [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hibernate annotations have a dependency on the

Re: [M2] Difference between 'mvn test' and 'mvn install'

2006-07-17 Thread Jakub Pawlowicz
Hi Jörg, Unfortunately this does not work for me, probably, because all my modules have the same version. I've installed maven-project-plugin snapshot version and my tests fail in the same place as before. Regards, Jakub On Jul 17, 2006, at 5:33 PM, Jörg Schaible wrote: Jakub Pawlowicz

Re: Spring 2.0, hibernate/ejb 3

2006-07-17 Thread Markus Wolf
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 it's already in ibiblio Not the final release. - -- __ Markus Wolf Wedeler Landstrasse 63 22559 Hamburg tel: (+49) 40 / 550 083 70 mob: (+49) 177 / 288 48 67 web: http://www.matrixweb.de icq:

[m2] release:perform checkout vs. export (with Subversion)

2006-07-17 Thread Mark Hewett
When doing a release:perform the tagged version is checked out into target/checkout. This causes some issues with Subclipse - you end up with a Subversion working copy nested within a Subversion working copy, and even though the target directory is marked as ignored this causes new resources

Thibaut CAZENAVE/E/EDFGDF/FR est absent(e).

2006-07-17 Thread Thibaut CAZENAVE
Je serai absent(e) du 17/07/2006 au 24/07/2006. Pour toutes les questions techniques concernant Couplage Lot2, merci de contacter Mohamed Cisse ou Alexandru Popescu. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: [m2] release:perform checkout vs. export (with Subversion)

2006-07-17 Thread Mike Perham
release:perform just uses the scm:checkout command. There's no scm:export command. -Original Message- From: Mark Hewett [mailto:[EMAIL PROTECTED] Sent: Monday, July 17, 2006 2:10 PM To: Maven Users Subject: [m2] release:perform checkout vs. export (with Subversion) When doing a

[M2] Insert variables in xdoc/apt files

2006-07-17 Thread Sebastien Pennec
Hi, I've been battling with xdoc and apt files for some hours now, and looking around on the web, too: I haven't found any example of xdoc/apt file with variable insertions in them. I don't imagine this could _not_ be possible with Maven 2... actually, I don't need anything complicated,

Re: [m2] release:perform checkout vs. export (with Subversion)

2006-07-17 Thread Mark Hewett
On 7/17/06, Mike Perham [EMAIL PROTECTED] wrote: release:perform just uses the scm:checkout command. There's no scm:export command. Ahh, and it seems that someone has already requested that export be added: http://jira.codehaus.org/browse/SCM-210 Maybe it's time to roll up my sleeves and see

Maven-Dependency-Plugin

2006-07-17 Thread Alexander Rau
hi all, I recently needed to find a way downloading all dependencies before starting any work on my projects. After trying different solutions which were not what I want I found the maven-dependency-plugin with its goal resolve. Perfect. However I can't clearly determine the current state

Re: Maven-Dependency-Plugin

2006-07-17 Thread dan tran
maven-dependency-plugin-2.0-SNAPSHOT is stable for me + if we can cut a beta release -D On 7/17/06, Alexander Rau [EMAIL PROTECTED] wrote: hi all, I recently needed to find a way downloading all dependencies before starting any work on my projects. After trying different solutions which

cctimestamp IN config.xml

2006-07-17 Thread EJ Ciramella
Will something like this work? log merge dir=E:/work/artifacts/LTY-P39/${cctimestamp}/unittestresults/ /log The problem is since we're using the distributed builder, the unittests aren't going to end up on the same machine where cc is running. So what I've done is, at the

Maven 2 jasper-reports-plugin

2006-07-17 Thread Matt Campbell
Could someone that is currently using this plugin give me some information on setting it up. Were having problems getting the plugin downloaded. What repository are you currently using to download the plugin from? The mojo plugin repository seems to be missing it.

RE: cctimestamp IN config.xml

2006-07-17 Thread EJ Ciramella
Whoops - sorry, wrong list! -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Monday, July 17, 2006 4:16 PM To: Maven Users List Subject: cctimestamp IN config.xml Will something like this work? log merge

Re: RE : Web site generation for multiple projects

2006-07-17 Thread Lee Meador
That's exactly what I was getting when I tried the latest released site plugin. You would have to search for my email to describe it. I think you described it better than I did. I don't know a solution either. -- Lee On 7/13/06, Thomas Van Buskirk [EMAIL PROTECTED] wrote: Does anyone have a

Re: Is maven seeing another jar?

2006-07-17 Thread Stephen Duncan
Is it possible you have a different copy of the jar somewhere else on your classpath? Such as in $JAVA_HOME/jre/lib/ext? (This occurred recently to a coworker of mine, so...) - Stephen On 7/17/06, Jeff Mutonho [EMAIL PROTECTED] wrote: One of my projects module is failing to build with the

Re: [m2] dependencyManagement question ?

2006-07-17 Thread Stephen Duncan
Well I don't agree that dependencyManagement should override what's specified as a hard dependency in the child POM, applying to transitive dependencies is certainly a valid use case: http://jira.codehaus.org/browse/MNG-1577 - Stephen On 7/17/06, David Smiley [EMAIL PROTECTED] wrote: Is there

Re: Maven 2 Newbie question - trouble running tests with Spring/Log4J

2006-07-17 Thread Deepak Chadha
I tried this without any luck... I am still getting the exact same exception. Any other ideas? Thanks Deepak - Original Message - From: [EMAIL PROTECTED] To: users@maven.apache.org; [EMAIL PROTECTED] Sent: Monday, July 17, 2006 11:13 AM Subject: RE: Maven 2 Newbie question -

Re: Projects in Continuum not building

2006-07-17 Thread Alex Lam
Hi, I've taken a look at the xml-rpc client, but I am a bit confused. I can use the xml-rpc to write a java class to build the project, but how does it get scheduled? Would I still have to use cron to schedule the java class to run or does xml-rpc does that too? Thanks, Alex On 7/6/06,

RE: Projects in Continuum not building

2006-07-17 Thread Bravo, Kris
Call it from your source control system (e.g., svn) to trigger every time there is a commit. kris bravo -Original Message- From: Alex Lam [mailto:[EMAIL PROTECTED] Sent: Monday, July 17, 2006 5:35 PM To: continuum-users@maven.apache.org Subject: Re: Projects in Continuum not

Maven2 site generation for module builds with flat directory layout

2006-07-17 Thread Alexander Rau
Hi all, I've had this problem for several weeks now. Anyone has an idea if this can be worked around or if it's just a bug in the site plugin. Use case: flat multi module project layout (due to eclipse) - means: workspace: modules /Project /Module1 /Module2 /Module3 ... /modules

Please review maven-eclipse-plugin

2006-07-17 Thread Edwin Punzalan
Hi, Here are the changes I've made: - created three sample usages: - attaching library sources - preventing module references - providing project natures and build commands - added three FAQ entries - some fixes to improve site documentation - docck compliance Staging site is

Re: [M2] Insert variables in xdoc/apt files

2006-07-17 Thread Edwin Punzalan
You can probably use a filtering plugin like the resource plugin to filter your files before running the site goal. Sebastien Pennec wrote: Hi, I've been battling with xdoc and apt files for some hours now, and looking around on the web, too: I haven't found any example of xdoc/apt file

[M2] Generating TOC in sites created in APT or simplified docbook format

2006-07-17 Thread Ralf Quebbemann
Hi, I can't seem to find an option to activate the generation of a Table of contents (TOC) for my APT or docbook documentation. I assume that the doxia module is the place to look for such a feature, but I can't find anything except for this JIRA entry

  1   2   >