At first try copy sources to another project only to verify if this is the
error. If compile, you don't have in the compile classpath the sources of
the libs. You can generate mylib-sources.jar and add to the pom.

For example a source dependency with maven that I use:

<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
<classifier>sources</classifier>
<scope>provided</scope>
<type>jar</type>
</dependency>

See provided scope.


2011/11/16 András Csányi <[email protected]>

> On 16 November 2011 15:46, Juan Pablo Gardella
> <[email protected]> wrote:
> > "  [ERROR] <no source info>: public abstract class
> > com.sayusiando.java.gwt.lib.salib.grid.abstracts.GridAbstract"
> > Add you source files to your classpath?
>
> I think I did. The dependencies of the DiLibWebClient project there is
> the SAGWTLib project (I use NetBeans) and the pom.xml file of SAGWTLib
> project contains this:
>
> <resources>
>            <resource>
>                <directory>src/main/java</directory>
>                <includes>
>                    <include>**/*.java</include>
>                    <include>**/*.gwt.xml</include>
>                </includes>
>            </resource>
>        </resources>
>
> As far as I know this would be enough to use external libs for gwt.
> Should I double-check again the whole stuff?
>
> --
> - -
> --  Csanyi Andras (Sayusi Ando)  -- http://sayusi.hu --
> http://facebook.com/andras.csanyi
> --  ""Trust in God and keep your gunpowder dry!" - Cromwell
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to