Hehe, sorry :) I've found the answer by myself... I just added <source
path="shared"/> and <source path="client"/> to the gtw.xml

Bye

On 16 Apr., 12:04, malibubu <[email protected]> wrote:
> At least, there is one other, little problem:
>
> I'm using some classes in my EntryPoint/Composites which are placed in
> de.go2one.sdui.shared
> Currently, I got this Messages while compiling:
>
>      [java]       [ERROR] Errors in 'file:/F:/projekte/SharedDesk/src/
> de/go2one/sdui/client/DetailsWidget.java'
>      [java]          [ERROR] Line 15: No source code is available for
> type de.go2one.sdui.shared.ApplicationConfiguration; did you forget to
> inherit a required module?
>      [java]       [ERROR] Errors in 'file:/F:/projekte/SharedDesk/src/
> de/go2one/sdui/client/GWTUtils.java'
>      [java]          [ERROR] Line 11: No source code is available for
> type com.google.gwt.dev.util.collect.HashMap<K,V>; did you forget to
> inherit a required module?
>      [java]       [ERROR] Errors in 'file:/F:/projekte/SharedDesk/src/
> de/go2one/sdui/client/AppArea.java'
>      [java]          [ERROR] Line 9: No source code is available for
> type de.go2one.sdui.shared.ApplicationConfiguration; did you forget to
> inherit a required module?
>      [java]       [ERROR] Errors in 'file:/F:/projekte/SharedDesk/src/
> de/go2one/sdui/client/AppToolbar.java'
>      [java]          [ERROR] Line 9: No source code is available for
> type de.go2one.sdui.shared.ApplicationConfiguration; did you forget to
> inherit a required module?
>
> How can I "include" this path?
>
> Thank you!
>
> On 16 Apr., 11:51, Sripathi Krishnan <[email protected]>
> wrote:
>
>
>
>
>
> > This line in your build.xml is incorrect -  <arg value="de.go2one.sdui.*
> > client.*MainView" />
>
> > When you invoke GWT compiler, you pass the fully qualified name of your
> > gwt.xml file (also called module name). In your case, it is
> > de.go2one.sdui.MainView.
>
> > --Sri
>
> > On 16 April 2010 14:21, malibubu <[email protected]> wrote:
>
> > > Hi,
>
> > > I've the following Problem: I want to compile my module "MainView",
> > > but it fails with the error message "Unable to find 'de/go2one/sdui/
> > > client/MainView.gwt.xml'.
>
> > > Directory Structure:
> > > -de
> > > ---go2one
> > > -----sdui
> > > -------MainView.gwt.xml
> > > -------client
> > > ---------MainView.java
>
> > > MainView.gwt.xml:
> > > <module>
> > >  <inherits name='com.google.gwt.user.User' />
> > >  <inherits name='com.google.gwt.rpc.RPC' />
> > >  <entry-point class='de.go2one.sdui.client.MainView' />
> > > </module>
>
> > > build.xml
> > >        <target name="gwtc" depends="compile" description="GWT compile to
> > > JavaScript">
> > >                <java failonerror="true" fork="true"
> > > classname="com.google.gwt.dev.Compiler">
> > >                        <classpath>
> > >                                <pathelement location="src" />
> > >                                <path refid="project.class.path" />
> > >                        </classpath>
> > >                        <!-- add jvmarg -Xss16M or similar if you see a
> > > StackOverflowError
> > > -->
> > >                        <jvmarg value="-Xmx256M" />
> > >                        <!-- Additional arguments like -style PRETTY or
> > > -logLevel DEBUG -->
> > >                        <arg line="${gwt.args}" />
> > >                        <arg value="de.go2one.sdui.client.MainView" />
> > >                </java>
> > >        </target>
> > >        <path id="project.class.path">
> > >                <pathelement location="webcontent/WEB-INF/classes" />
> > >                <fileset dir="lib" includes="*.jar" />
> > >        </path>
> > >        <target name="libs" description="Copy libs to WEB-INF/lib">
> > >                <mkdir dir="webcontent/WEB-INF/lib" />
> > >                <copy todir="webcontent/WEB-INF/lib">
> > >                        <fileset dir="lib">
> > >                                <include name="*.jar"/>
> > >                        </fileset>
> > >                </copy>
> > >        </target>
> > >        <target name="compile" depends="libs">
> > >                <javac srcdir="src" destdir="webcontent/WEB-INF/classes"
> > > source="1.5" target="1.5" nowarn="true" debug="true"
> > > debuglevel="vars,lines,source">
> > >                        <classpath refid="project.class.path" />
> > >                </javac>
> > >                <copy includeemptydirs="true" overwrite="true"
> > > todir="webcontent/WEB-
> > > INF/classes">
> > >                        <fileset dir="src">
> > >                                <include name="**/*.*" />
> > >                        </fileset>
> > >                </copy>
> > >        </target>
> > >        <target name="clean">
> > >                <mkdir dir="webcontent/WEB-INF/classes" />
> > >                <delete includeemptydirs="true">
> > >                        <fileset dir="webcontent/WEB-INF/classes">
> > >                                <include name="**/*" />
> > >                        </fileset>
> > >                </delete>
> > >        </target>
>
> > > This is not the complete build.xml.
> > > The content in webcontent/... looks also fine :(
>
> > > What should I do next?
> > > Regards!
>
> > > --
> > > 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]<google-web-toolkit%2bunsubs­­[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 
> > athttp://groups.google.com/group/google-web-toolkit?hl=en.-Zitierten Text 
> > ausblenden -
>
> > - Zitierten Text anzeigen -
>
> --
> 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 
> athttp://groups.google.com/group/google-web-toolkit?hl=en.- Zitierten Text 
> ausblenden -
>
> - Zitierten Text anzeigen -

-- 
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