Re: GWT with Maven and Spring

2014-09-29 Thread George Georgovassilis
Hi Dilan,

I run several GWT projects with Spring and Maven without a big fuss, but it 
requires some tweaking until you get it right. I keep a bare (more or less) 
project skeleton on github [1] to help me speed up new projects.

[1] 
https://github.com/ggeorgovassilis/gwt-stuff/tree/master/gwt-maven-project-skeleton

On Saturday, 27 September 2014 03:23:23 UTC+3, Dilan A wrote:

 Is there is a any working tutorial to get GWT setup with using maven? 


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT with Maven and Spring

2014-09-26 Thread Dilan A
Is there is a any working tutorial to get GWT setup with using maven? 

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT with Maven and Spring

2014-09-23 Thread Dilan A


On Monday, 22 September 2014 21:29:29 UTC+10, Thomas Broyer wrote:


 On Monday, September 22, 2014 12:32:50 PM UTC+2, Dilan A wrote:



 On Monday, 22 September 2014 01:07:47 UTC+10, Thomas Broyer wrote:

 The default scope in Maven is compile, there's no scope named 
 default.


 Thanks for  pointing that out but I'm still getting the same error 
 message.
 Some how maven libs are not available under WEB-INF/lib 


 Are you launching a mvn package or mvn war:exploded at some point 
 before trying the Run As… → Web Application?
 AFAICT, this is (still) a required step.



How do you launch the mvn package through Eclipse?  

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


pom.xml
Description: XML document


Re: GWT with Maven and Spring

2014-09-23 Thread Dilan A


On Monday, 22 September 2014 21:29:29 UTC+10, Thomas Broyer wrote:


 On Monday, September 22, 2014 12:32:50 PM UTC+2, Dilan A wrote:



 On Monday, 22 September 2014 01:07:47 UTC+10, Thomas Broyer wrote:

 The default scope in Maven is compile, there's no scope named 
 default.


 Thanks for  pointing that out but I'm still getting the same error 
 message.
 Some how maven libs are not available under WEB-INF/lib 


 Are you launching a mvn package or mvn war:exploded at some point 
 before trying the Run As… → Web Application?
 AFAICT, this is (still) a required step.



How do you launch mvn package or war:exploded within Eclipse.
I try to Run As  Maven Build ..  Goals war:exploded then apply and run? 
Then run the Run As  Web Application  still having the same issue. :(

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT with Maven and Spring

2014-09-22 Thread Dilan A


On Monday, 22 September 2014 01:07:47 UTC+10, Thomas Broyer wrote:

 The default scope in Maven is compile, there's no scope named default.


Thanks for  pointing that out but I'm still getting the same error message.
Some how maven libs are not available under WEB-INF/lib 

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT with Maven and Spring

2014-09-22 Thread Thomas Broyer

On Monday, September 22, 2014 12:32:50 PM UTC+2, Dilan A wrote:



 On Monday, 22 September 2014 01:07:47 UTC+10, Thomas Broyer wrote:

 The default scope in Maven is compile, there's no scope named default.


 Thanks for  pointing that out but I'm still getting the same error message.
 Some how maven libs are not available under WEB-INF/lib 


Are you launching a mvn package or mvn war:exploded at some point 
before trying the Run As… → Web Application?
AFAICT, this is (still) a required step.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


GWT with Maven and Spring

2014-09-21 Thread Dilan A
Hi
I have got gwt with spring and I'm getting following error

java.lang.ClassNotFoundException: 
org.springframework.web.context.ContextLoaderListener

My maven dependency has loaded the spring libraries but its look like lib 
are not available at \war\WEB-INF\lib

In POM i have added the 

packagingwar/packaging


and my dependency 
dependency
 groupIdorg.springframework/groupId
 artifactIdspring-core/artifactId
 version3.2.11.RELEASE/version
 scopedefault/scope
/dependency


and in my deployment assembly in eclipse I have got Maven Package assign to 
WEB-INF\lib

However, when I try to run the package  Run As  Web Application, I'm 
getting spring class cant find error.


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


GWT with Maven and Spring

2014-09-21 Thread Thomas Broyer
The default scope in Maven is compile, there's no scope named default.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.