-1

How to import and configure konakart shopping-cart source code in Eclipse?

Joachim Sauer
  • 302,674
  • 57
  • 556
  • 614
karty019
  • 39
  • 1

2 Answers2

0

Not only GWT project for any java project the process is the same .

Here you can find a Documentation by Eclipse to import an existing project in to your workspace

For attaching source in Eclipse :Is there an easy way to attach source in Eclipse?

To do the task first you have to download the *src.zip * of the corresponding project.

Community
  • 1
  • 1
Suresh Atta
  • 120,458
  • 37
  • 198
  • 307
  • Thanks for the reply @Baadshah. but i need to run the build.xml file using command line, to get the working code and that doesn't work for me. It shows some 'could not find file' error. – karty019 Mar 22 '13 at 13:20
  • Smells like path problem.cross check it. – Suresh Atta Mar 22 '13 at 13:24
0

In KonaKart there is an ANT task that you can run to create the Eclipse project:

Go to the custom directory under your installation, then:

C:\Program Files\KonaKart\custom>bin\kkant -p
Buildfile: build.xml

Main targets:

make_eclipse_project   Create an Eclipse Project for Developing the Struts-2 Storefront

So you would enter:

C:\Program Files\KonaKart\custom>bin\kkant make_eclipse_project
Greg
  • 1