|
|
Is this Maven 1 or Maven 2?
Maven 2
What steps will reproduce the problem?
1. Create a multiple module project, specify the modules in the pom
<compileTargets>
<value>com.mymodules.ModuleA</value>
<value>com.mymodules.ModuleB</value>
</compileTargets>
2. Do a "mvn package" on Solaris - fails
3. Do a "mvn package" on Windows - passes
What is the expected output?
Compiling module com.mymodules.ModuleA
Compiling 5 permutations
Compilation succeeded
Compiling module com.mymodules.ModuleB
Compiling 5 permutations
Compilation succeeded
What do you see instead?
Loading module 'com.mymodules.ModuleAcom.mymodules.ModuleB'
[ERROR] Unable to
find 'com/mymodules/ModuleAcom/mymodules/ModuleB.gwt.xml' on your
classpath; could be a typo, or maybe you forgot to include a classpath
entry for source?
What version of the product are you using? On what operating system?
Solaris + Linux, 2.0-RC1, GWT 1.6.4,
Please provide any additional information below.
Looks like a compiler problem on linux, it appears to be mashing the two
modules into one.
The reason I am "packaging" on Solaris is this is where my CruiseControl
is located.
|