Reputation:
Hello friends I have not so much Idea about maven build tool. I just download and install it in my system as I read maven is a build tool and work perfectly with transitive dependency. this is the basic reason to use it
I also configure mavan plugin in Eclipse.
so what is the proper Gwt maven archetype in eclipse and I read so many command in tutorials like maven:gwt run but I dont to where is this command exist in eclipse
I am very new in maven so please help me like a beginner
Upvotes: 0
Views: 1220
Reputation: 634
This is a common approach to get support of maven
in existing GWT-Project
Make a gwt project by using the gwt plugin in Eclipse. Now you have an Eclipse gwt project.
Select the project in Project Explorer , right-click it, then choose Configure . Then select Convert to Maven Project . Now you get a gwt-maven project.
Now add necessary dependencies to pom.xml .
if you want to create a gwt maven
project directly you need to choose gwt archetype
if not exist you can add this have a look in
this video
Upvotes: 4
Reputation: 353
You should:
Configure
. Then select Convert to Maven Project
. Now you get a gwt-maven project.
Upvotes: 0