What's the output-path for the compiler? You could try adding the 
'sourceroot'-tag in the <configuration>,
although I'm not sure that will work on your plug-in...
I know that this tag works on my antrun-plugin, so maybe you could configure a 
small antrun to add that
path to your sources:

<plugins>
        <plugin>
                <artifactId>maven-antrun-plugin</artifactId>
                <executions>
                        <execution>
                                <id>sources</id>
                                <phase>generate-sources</phase>
                                <goals>
                                        <goal>run</goal>
                                </goals>
                                <configuration>
                                        
<sourceRoot>${project.build.directory}/generated-sources/main/java</sourceRoot>
                                        <tasks>
                                                <echo message="Adding 
'${project.build.directory}/generated-sources/main/java' as source-root" />
                                        </tasks>
                                </configuration>
                        </execution>
                </executions>
        </plugin>
</plugins>

I presume you have the rmi-plugin in the 'generate-sources' phase, that's why I 
declared this antrun there as well!

In case I understood something wrong, please send some more info on what you 
want!

Roland



On Tuesday 06 June 2006 17:01, Eugeny N Dzhurinsky wrote:
> Hi there!
> I need to compile some stubs for classess I use, with freehep-rmic-plugin.
> It works file, but for some reason stub classess are not packaged into
> module's resulting JAR file.
>
> Any ideas why is that and how to fix?


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

Reply via email to