Gotlifebar / gwtquery-plugins

Automatically exported from code.google.com/p/gwtquery-plugins
0 stars 0 forks source link

Deploy to appengine fails #12

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
gwtquery jar has been added both in the project classpath and in the project 
pom.xml.
Execution in dev mode is ok. However, when trying to deploy on appengine, we 
get the errors copied below, that conduct to a deployment failure. Any clue ?

----deploy on appengine log (extract)----

[ERROR] Errors in 
'jar:file:/Users/cyrille/Documents/Developpement/Projects/lib/gquery-dnd-bundle-
1.0.3.jar!/com/google/gwt/user/cellview/client/CellBasedWidgetImplStandard.java'
         [ERROR] Line 76: No source code is available for type com.google.gwt.query.client.plugins.EventsListener; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/Users/cyrille/Documents/Developpement/Projects/lib/gquery-dnd-bundle-1.0.3.jar!/com/google/gwt/user/cellview/client/CellBasedWidgetImplTrident.java'
         [ERROR] Line 152: No source code is available for type com.google.gwt.query.client.plugins.EventsListener; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/Users/cyrille/Documents/Developpement/Projects/qunb/src/main/java/com/qunb/client/content/widgets/Chart.java'
         [ERROR] Line 47: No source code is available for type gwtquery.plugins.droppable.client.gwt.DroppableWidget<T>; did you forget to inherit a required module?
         [ERROR] Line 52: No source code is available for type gwtquery.plugins.droppable.client.events.DropEvent.DropEventHandler; did you forget to inherit a required module?
         [ERROR] Line 54: No source code is available for type gwtquery.plugins.droppable.client.events.DropEvent; did you forget to inherit a required module?
         [ERROR] Line 69: No source code is available for type com.google.gwt.visualization.client.visualizations.LineChart; did you forget to inherit a required module?
         [ERROR] Line 74: No source code is available for type com.google.gwt.visualization.client.VisualizationUtils; did you forget to inherit a required module?
         [ERROR] Line 77: No source code is available for type com.google.gwt.visualization.client.visualizations.LineChart.Options; did you forget to inherit a required module?
         [ERROR] Line 84: No source code is available for type com.google.gwt.visualization.client.LegendPosition; did you forget to inherit a required module?
         [ERROR] Line 89: No source code is available for type com.google.gwt.visualization.client.AbstractDataTable; did you forget to inherit a required module?
         [ERROR] Line 90: No source code is available for type com.google.gwt.visualization.client.DataTable; did you forget to inherit a required module?
         [ERROR] Line 91: No source code is available for type com.google.gwt.visualization.client.AbstractDataTable.ColumnType; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/Users/cyrille/Documents/Developpement/Projects/qunb/src/main/java/com/qunb/client/studio/widgets/Chart.java'
         [ERROR] Line 47: No source code is available for type gwtquery.plugins.droppable.client.gwt.DroppableWidget<T>; did you forget to inherit a required module?
         [ERROR] Line 52: No source code is available for type gwtquery.plugins.droppable.client.events.DropEvent.DropEventHandler; did you forget to inherit a required module?
         [ERROR] Line 54: No source code is available for type gwtquery.plugins.droppable.client.events.DropEvent; did you forget to inherit a required module?
         [ERROR] Line 69: No source code is available for type com.google.gwt.visualization.client.visualizations.LineChart; did you forget to inherit a required module?
         [ERROR] Line 74: No source code is available for type com.google.gwt.visualization.client.VisualizationUtils; did you forget to inherit a required module?
         [ERROR] Line 77: No source code is available for type com.google.gwt.visualization.client.visualizations.LineChart.Options; did you forget to inherit a required module?
         [ERROR] Line 84: No source code is available for type com.google.gwt.visualization.client.LegendPosition; did you forget to inherit a required module?
         [ERROR] Line 89: No source code is available for type com.google.gwt.visualization.client.AbstractDataTable; did you forget to inherit a required module?
         [ERROR] Line 90: No source code is available for type com.google.gwt.visualization.client.DataTable; did you forget to inherit a required module?
         [ERROR] Line 91: No source code is available for type com.google.gwt.visualization.client.AbstractDataTable.ColumnType; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/Users/cyrille/Documents/Developpement/Projects/qunb/src/main/java/com/qunb/client/studio/widgets/RelatedWidget.java'
         [ERROR] Line 57: No source code is available for type gwtquery.plugins.droppable.client.gwt.DragAndDropCellList<T>; did you forget to inherit a required module?
         [ERROR] Line 104: No source code is available for type gwtquery.plugins.draggable.client.events.DragStopEvent.DragStopEventHandler; did you forget to inherit a required module?
         [ERROR] Line 106: No source code is available for type gwtquery.plugins.draggable.client.events.DragStopEvent; did you forget to inherit a required module?
         [ERROR] Line 118: No source code is available for type gwtquery.plugins.draggable.client.DraggableOptions; did you forget to inherit a required module?
         [ERROR] Line 121: No source code is available for type gwtquery.plugins.draggable.client.DraggableOptions.HelperType; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/Users/cyrille/Documents/Developpement/Projects/qunb/src/main/java/com/qunb/client/studio/widgets/Search.java'
         [ERROR] Line 48: No source code is available for type gwtquery.plugins.droppable.client.gwt.DragAndDropCellList<T>; did you forget to inherit a required module?
         [ERROR] Line 90: No source code is available for type gwtquery.plugins.draggable.client.DraggableOptions; did you forget to inherit a required module?
         [ERROR] Line 93: No source code is available for type gwtquery.plugins.draggable.client.DraggableOptions.HelperType; did you forget to inherit a required module?

Original issue reported on code.google.com by cvin...@qunb.com on 9 Mar 2011 at 11:23

GoogleCodeExporter commented 8 years ago
The errors you are showing are compile errors. (The appengine plugin compiles 
the project before to deploy it.)
Check your project configuration to verify that the gquery-dnd-bundle is set 
before the gwt.jar in the classpath and that you are not including the snapshot 
version of gwtquery

Original comment by julien.d...@gmail.com on 15 Mar 2011 at 12:53

GoogleCodeExporter commented 8 years ago
I think you receive these errors because your pom.xml is wrong. Please check if 
your dependencies are correctly defined

Original comment by julien.d...@gmail.com on 15 Mar 2011 at 1:12

GoogleCodeExporter commented 8 years ago
any news ?

Original comment by julien.d...@gmail.com on 27 Apr 2011 at 8:38

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
Works fine now, when the library is NOT included in the pom.xml but added 
manually in the classpath, and put BEFORE the gwt dependencies in the 
classpath. Thanks.

Original comment by cvin...@qunb.com on 27 Apr 2011 at 9:27

GoogleCodeExporter commented 8 years ago
As this constraint is documented in the wiki article of the droppable plugin, I 
closed this issue

Original comment by julien.d...@gmail.com on 28 Apr 2011 at 6:49