I'm now trying the last RC1, as someone suggested in another thread,
but now when trying to generate the site I'm getting:

[exec] 
-------------------------------------------------------------------------------
    [exec] BUILD FAILED
    [exec] 
-------------------------------------------------------------------------------
    [exec] Errors stack :
    [exec] >> Unable to obtain goal [multiproject:site]
    [exec] >> File......
file:/subversion/users/client/.maven/cache/maven-multiproject-plugin-1.5.1-20070323.003129/plugin.jelly
    [exec] >> Element... maven:reactor
    [exec] >> Line...... 103
    [exec] >> Column.... 9
    [exec] >> Unable to obtain goal [site]
    [exec] >> File......
file:/subversion/users/client/.maven/cache/maven-test-plugin-1.8.1-20070322.234947/plugin.jelly
    [exec] >> Element... junit
    [exec] >> Line...... 155
    [exec] >> Column.... 49
    [exec] >> Test com.mycompany.MyTestTest failed
    [exec] 
-------------------------------------------------------------------------------


I thought that during site generation a error in a test wouldn't avoid
the site to be created. Is there any property i should use??

thanks
emerson

On 20/04/07, emerson cargnin <[EMAIL PROTECTED]> wrote:
Hi, thanks, but actually I haven't got any of them in my jre/lib/ext,
and I didn't have when I run 1.0.2 and it worked alright.

I have two other questions if you all allow me:

1- Now with 1.1 beta 3 it seems that checkstyle report generation
takes ages (really, at least 5 minutes for each sub project).

2- when running multiproject:site it seems that dependencies generated
by other java versions are not compatible, so that i need to run
multiproject:intall before running site to have it updated. The site
is not suppose to update the jar for all modules being built?

thanks a lot guys
Emerson

On 20/04/07, Lukas Theussl <[EMAIL PROTECTED]> wrote:
> http://emma.sourceforge.net/faq.html#q.antfailure
>
> HTH,
> -Lukas
>
>
> emerson cargnin wrote:
> > I corrected those problems, now i'm getting the following:
> >
> >     [exec] Unable to obtain goal [site] -- file:/C:/Documents and
> > Settings/EmersonC/.maven/cache/maven-emma-plugin-0.5/plugin.jelly:69:25:
> > <ant:taskdef> taskdef A class needed by class
> > com.vladium.emma.emmajavaTask cannot be found:
> > org/apache/tools/ant/taskdefs/Java
> >     [exec] Total time   : 21 seconds
> >     [exec] Finished at  : 20 April 2007 10:23:34 BST
> >
> > Is it the right version of emma for use with mave 1.1 beta 3?
> >
> > thanks
> >
> > On 12/04/07, Arnaud HERITIER <[EMAIL PROTECTED]> wrote:
> >
> >> It's properties/scope
> >>
> >> <dependency>
> >>  <groupId>junit</groupId>
> >>  <artifactId>junit</artifactId>
> >>  <version>3.8.1</version>
> >>  <properties>
> >>    <scope>test</scope>
> >>  </properties>
> >> </dependency>
> >>
> >> Arnaud
> >>
> >> On 12/04/07, Lukas Theussl <[EMAIL PROTECTED]> wrote:
> >> >
> >> > AFAIK, <scope> is not used in m1, but it is 'supported', and its use is
> >> > even recommended, also in m1, see eg
> >> > http://jira.codehaus.org/browse/MPXDOC-191.
> >> >
> >> > Cheers,
> >> > -Lukas
> >> >
> >> >
> >> > Arnaud HERITIER wrote:
> >> > > <scope>provided</scope> isn't supported in maven 1
> >> > > Your pom is for maven 2 ?
> >> > >
> >> > > Arnaud
> >> > >
> >> > > On 12/04/07, Lukas Theussl <[EMAIL PROTECTED]> wrote:
> >> > >
> >> > >>
> >> > >> The tag <modelVersion>4.0.0</modelVersion> is for an m2 pom.xml,
> >> in m1
> >> > >> you need <pomVersion>3</pomVersion>.
> >> > >>
> >> > >> HTH,
> >> > >> -Lukas
> >> > >>
> >> > >> emerson cargnin wrote:
> >> > >> > Hi there
> >> > >> >
> >> > >> > I'm trying to convert our 1.0.2 project.xml to 1.1 beta 3.
> >> > >> >
> >> > >> > i'm getting the following error for the project.xml down below:
> >> > >> >
> >> > >> > [exec] Starting the reactor...
> >> > >> >
> >> > >> > [exec] BUILD FAILED
> >> > >> > [exec] File...... file:/C:/Documents and
> >> > >> > Settings/EmersonC/.maven/cache/maven-multiproject-plugin-1.5
> >> > >> /plugin.jelly
> >> > >> > [exec] Element... maven:reactor
> >> > >> > [exec] Line...... 63
> >> > >> > [exec] Column.... 9
> >> > >> > [exec] Error parsing project.xml
> >> > >> >
> >> > 'C:\n&a_reports\site_ucssearch\modules\.\com.company.java\project.xml'
> >> > >> > [exec] Total time   : 1 minutes 16 seconds
> >> > >> > [exec] Finished at  : 12 April 2007 09:39:16 BST
> >> > >> >
> >> > >> > thanks
> >> > >> > emerson
> >> > >> >
> >> > >> > <?xml version="1.0" encoding="ISO-8859-1"?>
> >> > >> > <project>
> >> > >> > <modelVersion>4.0.0</modelVersion>
> >> > >> > <groupId>com.company</groupId>
> >> > >> > <artifactId>com.company.java</artifactId>
> >> > >> > <name>com.company.java</name>
> >> > >> > <currentVersion>1.0-SNAPSHOT</currentVersion>
> >> > >> > <build>
> >> > >> > <sourceDirectory>src/java</sourceDirectory>
> >> > >> > <unitTestSourceDirectory>src/java</unitTestSourceDirectory>
> >> > >> > <unitTest>
> >> > >> > <resources>
> >> > >> > <resource>
> >> > >> > <directory>src/resources</directory>
> >> > >> > </resource>
> >> > >> > </resources>
> >> > >> > <includes>
> >> > >> > <include>**/*Test.java</include>
> >> > >> > </includes>
> >> > >> > <excludes>
> >> > >> > <exclude>**/Abstract*Test.java</exclude>
> >> > >> > </excludes>
> >> > >> > </unitTest>
> >> > >> > <resources>
> >> > >> > <resource>
> >> > >> > <directory>src/resources</directory>
> >> > >> > </resource>
> >> > >> > </resources>
> >> > >> > </build>
> >> > >> > <dependencies>
> >> > >> > <dependency>
> >> > >> > <groupId>junit</groupId>
> >> > >> > <artifactId>junit</artifactId>
> >> > >> > <version>3.8.1</version>
> >> > >> > <scope>test</scope>
> >> > >> > </dependency>
> >> > >> > <dependency>
> >> > >> > <groupId>javax.servlet</groupId>
> >> > >> > <artifactId>servlet-api</artifactId>
> >> > >> > <version>2.3</version>
> >> > >> > <scope>provided</scope>
> >> > >> > </dependency>
> >> > >> > <dependency>
> >> > >> > <groupId>regexp</groupId>
> >> > >> > <artifactId>regexp</artifactId>
> >> > >> > <version>1.2</version>
> >> > >> > </dependency>
> >> > >> > <dependency>
> >> > >> > <groupId>log4j</groupId>
> >> > >> > <artifactId>log4j</artifactId>
> >> > >> > <version>1.1.3</version>
> >> > >> > </dependency>
> >> > >> > <dependency>
> >> > >> > <groupId>spring</groupId>
> >> > >> > <artifactId>spring</artifactId>
> >> > >> > <version>2.0.0</version>
> >> > >> > </dependency>
> >> > >> > </dependencies>
> >> > >> > <reports>
> >> > >> > <report>maven-junit-report-plugin</report>
> >> > >> > </reports>
> >> > >> > </project>
> >> > >> >
> >> > >> >
> >> ---------------------------------------------------------------------
> >> > >> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> >> > >> > For additional commands, e-mail: [EMAIL PROTECTED]
> >> > >>
> >> > >>
> >> ---------------------------------------------------------------------
> >> > >> To unsubscribe, e-mail: [EMAIL PROTECTED]
> >> > >> For additional commands, e-mail: [EMAIL PROTECTED]
> >> > >>
> >> > >>
> >> > >
> >> >
> >> > ---------------------------------------------------------------------
> >> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> >> > For additional commands, e-mail: [EMAIL PROTECTED]
> >> >
> >> >
> >>
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to