Re: How to migrate gwt 2.8.1 project to gwt 2.9.0 in eclipse?

2020-07-28 Thread Michael Conrad
We use a build.gradle file similar to the following for most of our GWT client projects: (Note: We use './gradlew :gwts' to run SDM and './gradlew :build :farmRun' to run a local http server) apply plugin: 'java' apply plugin: 'war' apply plugin: 'gwt'

Re: How to migrate gwt 2.8.1 project to gwt 2.9.0 in eclipse?

2020-07-28 Thread mb user
I imported the project from svn, then eclipse created a new gradle project. It seems like gradle recognize this project as a normal java project. I have only src and war directories in the repository, so no files in the root dir. In the src there are numerous gwt modules directories, and in the

Re: How to migrate gwt 2.8.1 project to gwt 2.9.0 in eclipse?

2020-07-28 Thread Michael Conrad
Use Maven or Gradle to configure the project and let Eclipse import it as a Maven or Gradle project. On Tue, Jul 28, 2020 at 11:42 AM mb user wrote: > Hi, > > After a storage crash, I had to reinstall my development computer. > > Now I have eclipse 4.16 and a gwt 2.8.1 project source imported fr

How to migrate gwt 2.8.1 project to gwt 2.9.0 in eclipse?

2020-07-28 Thread mb user
Hi, After a storage crash, I had to reinstall my development computer. Now I have eclipse 4.16 and a gwt 2.8.1 project source imported from svn. This project was built with the eclipse gwt plugin, but I cannot install it to eclipse 4.16. What is the recommended way to achieve compile and deplo