Maven 1.0 rc1
I'm not sure what I did wrong.
My multiproject works fine until I try to drop in an ear module.
The structure is as so:

C:\projects\MITFactoryGui\modules\ear>
I get this when running: maven multiproject:install

+----------------------------------------
| Executing multiproject:install-callback MIT Factory Ear Module
| Memory: 37M/56M
+----------------------------------------

BUILD FAILED
File...... file:/C:/Documents and Settings/chengt/.maven/plugins/maven-multiproject-plugin-1.1/
Element... maven:reactor
Line...... 174
Column.... 9
Unknown goal "multiproject:install-callback"
Total time: 48 seconds
Finished at: Fri Dec 12 11:49:56 EST 2003
-------------------------------------------------------------


But all the other projects will build just fine.
The only 2 files in the module are project.xml and project.properties
Their content are below:

<?xml version="1.0" encoding="ISO-8859-1"?>
<project>
 <extends>../../project.xml</extends>
 <!-- a unique name for this project -->
 <groupId>MITFactory</groupId>
 <id>MITFactory</id>
 <!-- a short but descriptive name for the project -->
 <name>MIT Factory Ear Module</name>

 <!-- The version of the project under development, e.g.
      1.1, 1.2, 2.0-SNAPSHOT -->
 <currentVersion>1.0</currentVersion>

 <package>com.nielsenmedia.mitfactory.backend</package>
 <description>
     MIT Factory GUI Service
 </description>
 <!-- a short description of what the project does -->
 <shortDescription>Deployable ear for MIT Factory</shortDescription>

 <!-- jar files the project is dependent on -->
 <dependencies>
   <dependency>
     <groupId>log4j</groupId>
   <artifactId>log4j</artifactId>
   <version>1.2.8</version>
   <url>http://jakarta.apache.org/log4j.html</url>
     <properties>
       <ear.bundle>true</ear.bundle>
     </properties>
   </dependency>
 </dependencies>

 <!-- build information for the project -->
 <build>
   <nagEmailAddress>[EMAIL PROTECTED]</nagEmailAddress>
   <sourceDirectory>src/java</sourceDirectory>
   <unitTestSourceDirectory/>
   <unitTest/>
   <resources/>
 </build>
</project>

maven.xdoc.date=left
maven.xdoc.version=${pom.currentVersion}
maven.multiproject.type=ear
Anyone know what I am doing wrong?
Thanks,
-Tim


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



Reply via email to