more than one test source folder - is it possible?

2005-02-25 Thread Maciej Zywno
Hi, Can I have more than one test source folders defined in a descriptor? (I would like to have separate source folders for dbunit and junit test) Regards, Maciek Zywno - To unsubscribe, e-mail: [EMAIL PROTECTED] For

DTDs for project.xml and other maven xmls? maven with IDEA?

2005-02-25 Thread Filip Polsakiewicz
Hi all, I am using IntelliJ Idea to create my source code. The IDE provides the option for code completion if a dtd is provided. Is there any place to get the dtds for maven related xmls from? Regrettably I haven't been able to find a plugin for Idea which makes working with maven easier like

RE: DTDs for project.xml and other maven xmls? maven with IDEA?

2005-02-25 Thread Siveton Vincent
Maven uses xsd (Schema Infoset Model) Lets add this following line in your project.xml project xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:noNamespaceSchemaLocation=http://maven.apache.org/xsd/maven-project-3.0 .0.xsd Vincent -Message d'origine- De : Filip Polsakiewicz

xerces

2005-02-25 Thread Adam Hardy
Hi again All, I posted 24 hours ago (included below) about a problem with xerces. I probably should have kept it short and sweet to attract a reply, so I'm going to try that now: how can I set up and run a task as a goal with a later version of xerces xml parser? None of the solutions out in

RE: DTDs for project.xml and other maven xmls? maven with IDEA?

2005-02-25 Thread Filip Polsakiewicz
Hi, thanks for the hint. I had to change it a little bit otherwise Idea wouldn't do code completion: ?xml version=1.0 encoding=utf-8 ? project xsi:noNamespaceSchemaLocation=http://maven.apache.org/xsd/maven-project-3.0 .0.xsd xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; /project

RE: xerces

2005-02-25 Thread Jörg Schaible
Nicolas Chalumeau wrote on Friday, February 25, 2005 1:43 PM: A corrupted jar ! java.lang.NoClassDefFoundError: com/sun/org/apache/xml/internal/serialize/OutputFormat This is a strange package path (com.sun and org.apache)! Unfortunately not. This is the next

RE: xerces

2005-02-25 Thread Adam Hardy
-Original Message- From: Jörg Schaible [mailto:[EMAIL PROTECTED] Nicolas Chalumeau wrote on Friday, February 25, 2005 1:43 PM: A corrupted jar ! java.lang.NoClassDefFoundError: com/sun/org/apache/xml/internal/serialize/OutputFormat This is a strange

Ant build.xml and multiple maven.repo.remote

2005-02-25 Thread Oscar Picasso
Hi, I there a mean to create a working build.xml with the ant plugin when our project uses more than one remote repository? From what I see, the ant plugin only takes ibiblio into account. Thanks Oscar __ Do you Yahoo!? Yahoo! Sports - Sign

Re: xerces

2005-02-25 Thread Michael Niemaz
I think i had the same kind of trouble with httpClient. All I ended up with was to overwrite the httpClient jar in the lib directory of maven. Dirty but working ;-) Hope this helps, --mike Adam Hardy wrote: -Original Message- From: Jörg Schaible [mailto:[EMAIL PROTECTED] Nicolas Chalumeau

maven torque:insert-sql

2005-02-25 Thread Dressler, Erik(externe MA)
hi, there! this is my first approach to a mailing list list! :) my question: the maven-goal torque:insert-sql cuts every semicolon of an sql-scipt. the result is (for example): [torque-sql-exec] Executing file: C:\Diplomarbeit\portaltest\target\sql\turbine-security-schema.sql

Maven , Junit ClassNotFound Exception

2005-02-25 Thread Krikor Krumlian
x-tad-biggerHello everyone , using maven 1.0.2 and junit 3.8.1 machine MAC OSX So i am building this project using maven and i have a unit test that i'm trying to get it to work in maven but so far no luck my project.xml has this junit dependency defined and nothing else !-- Junit for my

RE: xerces [resolved]

2005-02-25 Thread Adam Hardy
It ended up that I didn't overwrite maven's copy, although just for the record, maven got all bent out-of-shape when I tried it. However thanks, because it prompted the situation where I worked out what was going wrong. The class that JAXB couldn't find is in xercesImpl-2.6.2.jar and I knew I

RE: DTDs for project.xml and other maven xmls? maven with IDEA?

2005-02-25 Thread Hal Arnold
So, then what does one have to do to the two lines in the resources pane to make Idea work with this description? -Original Message- From: Filip Polsakiewicz [mailto:[EMAIL PROTECTED] Sent: Friday, February 25, 2005 4:09 AM To: Maven Users List Subject: RE: DTDs for project.xml and

maven-clover-plugin and history

2005-02-25 Thread nusgroup
Hello, I try to use clover with maven. For reports only it works fine - just added 'maven-clover-plugin' to the reports section of the POM. Now I would like to have a history, but I could not get it to work. I did set the 'maven.clover.history.dir' in the propertis file an tried to call

compiling my project with resource files

2005-02-25 Thread Bahaa Nasrallah
Hi, I am trying to migrate the build process for my project from Ant to Maven. The problem is that i dont know how exactly to migrate the compiling. in Ant i have: !--Compile Java source files debug=on -- javac srcdir=${src} destdir=${compile.outdir} classpath

batik: java.lang.NoSuchMethodError for SVG

2005-02-25 Thread Valerie Nyre
Ladies and gentlemen I am using Maven 1.0.2 and want to include an SVG - graphic. the BUILD FAILS in the pdf:pdf goal. with the message: java.lang.NoSuchMethodError:

RE: compiling my project with resource files

2005-02-25 Thread Daniel Or
You should use dependencies. The resources are not meant for jars you want in the classpath. It's all in the user guide ... -Original Message- From: Bahaa Nasrallah [mailto:[EMAIL PROTECTED] Sent: Friday, February 25, 2005 7:27 PM To: users@maven.apache.org Subject: compiling my project