0

I have followed the instructions here to install Wink.

org.apache.wink.example

When you get to the "Import Maven Projects" screen, it says you should see the following :

enter image description here

I just see this :

enter image description here

Any idea why this might be the case?

Simon Kiely
  • 5,880
  • 28
  • 94
  • 180

2 Answers2

0

You need add following information while adding the dependency. For Wink 1.4 maven dependency can be found from here. You can add like shown in image:

<dependency>
    <groupId>org.apache.wink.example</groupId>
    <artifactId>apps</artifactId>
    <version>1.4</version>
</dependency>

enter image description here

Prerak Tiwari
  • 3,436
  • 4
  • 34
  • 64
-2

Please install subclipse first using eclipse market place.

enter image description here

and then search by providing dependency as shown below.

enter image description here

Micho
  • 3,929
  • 13
  • 37
  • 40