I determined that this was an issue with the way someone had written the maven.xml

the project tag needed to be

<project default="build-all"
         xmlns:maven="jelly:maven">

not

<project default="build-all"
         xmlns:reactor="reactor"
         xmlns:m="maven">

not sure why it was that way.

-Mark

Mark R. Diggory wrote:

I'm working on getting the Jakarta Commons to build from the jakarta-commons/commons-build project directory.

Currently I'm encounter issues with the reactor not seeming to work, I try to run a goal with the reactor in it and get a "success with no other info back from maven (even with the -X debug option).

On Windoz:

C:\Eclipse3.0\workspace\jakarta-commons>maven -X build-all
 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.0-rc1-SNAPSHOT

[DEBUG] Adding reference: maven.dependency.classpath ->
[DEBUG] Adding reference: maven-classpath ->
BUILD SUCCESSFUL
Total time: 8 seconds
Finished at: Mon Feb 16 12:42:14 EST 2004




On *nix:

[EMAIL PROTECTED] commons-build]$ maven -X build-all
 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.0-rc1-SNAPSHOT

[DEBUG] Adding reference: maven.dependency.classpath -> [DEBUG] Adding reference: maven-classpath -> BUILD SUCCESSFUL
Total time: 9 seconds
Finished at: Mon Feb 16 12:35:13 EST 2004






the build-all goal looks like:

  <goal name="build-all">
    <maven:reactor
      basedir="${basedir}"
      includes="../*/project.xml"
      excludes="../commons-build/project.xml"
      goals="clean,jar"
      banner="Building"
      ignoreFailures="false"
    />
  </goal>

is there something obvious I'm missing? Or would it be better if I was trying to build the commons site using the multiproject plugin instead?

-Mark


-- Mark Diggory Software Developer Harvard MIT Data Center http://www.hmdc.harvard.edu

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



Reply via email to